ListVocabulariesResponse

public struct ListVocabulariesResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ListVocabularies operation returns a page of vocabularies at a time. The maximum size of the page is set in the MaxResults parameter. If there are more jobs in the list than will fit on the page, Amazon Transcribe returns the NextPage token. To return in the next page of jobs, include the token in the next request to the ListVocabularies operation.

    Declaration

    Swift

    public let nextToken: String?
  • The requested vocabulary state.

    Declaration

    Swift

    public let status: VocabularyState?
  • A list of objects that describe the vocabularies that match the search criteria in the request.

    Declaration

    Swift

    public let vocabularies: [VocabularyInfo]?
  • Undocumented

    Declaration

    Swift

    public init(nextToken: String? = nil, status: VocabularyState? = nil, vocabularies: [VocabularyInfo]? = nil)