ListVocabulariesRequest

public struct ListVocabulariesRequest : AWSShape
extension TranscribeService.ListVocabulariesRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The maximum number of vocabularies 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?
  • When specified, the vocabularies returned in the list are limited to vocabularies whose name contains the specified string. The search is not case sensitive, ListVocabularies returns both “vocabularyname” and “VocabularyName” in the response list.

    Declaration

    Swift

    public let nameContains: String?
  • If the result of the previous request to ListVocabularies was truncated, include the NextToken to fetch the next set of jobs.

    Declaration

    Swift

    public let nextToken: String?
  • When specified, only returns vocabularies with the VocabularyState field equal to the specified state.

    Declaration

    Swift

    public let stateEquals: VocabularyState?
  • Undocumented

    Declaration

    Swift

    public init(maxResults: Int? = nil, nameContains: String? = nil, nextToken: String? = nil, stateEquals: VocabularyState? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws