ListTranscriptionJobsRequest

public struct ListTranscriptionJobsRequest : AWSShape
extension TranscribeService.ListTranscriptionJobsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.

    Declaration

    Swift

    public let jobNameContains: String?
  • The maximum number of jobs to return in the response. If there are fewer results in the list, this response contains only the actual results.

    Declaration

    Swift

    public let maxResults: Int?
  • If the result of the previous request to ListTranscriptionJobs was truncated, include the NextToken to fetch the next set of jobs.

    Declaration

    Swift

    public let nextToken: String?
  • When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.

    Declaration

    Swift

    public let status: TranscriptionJobStatus?
  • Undocumented

    Declaration

    Swift

    public init(jobNameContains: String? = nil, maxResults: Int? = nil, nextToken: String? = nil, status: TranscriptionJobStatus? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws