Search Vocabularies
| connect_search_vocabularies | R Documentation |
Searches for vocabularies within a specific Amazon Connect instance using State, NameStartsWith, and LanguageCode¶
Description¶
Searches for vocabularies within a specific Amazon Connect instance
using State, NameStartsWith, and LanguageCode.
Usage¶
Arguments¶
InstanceId[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
MaxResultsThe maximum number of results to return per page.
NextTokenThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
StateThe current state of the custom vocabulary.
NameStartsWithThe starting pattern of the name of the vocabulary.
LanguageCodeThe language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?
Value¶
A list with the following syntax:
list(
VocabularySummaryList = list(
list(
Name = "string",
Id = "string",
Arn = "string",
LanguageCode = "ar-AE"|"de-CH"|"de-DE"|"en-AB"|"en-AU"|"en-GB"|"en-IE"|"en-IN"|"en-US"|"en-WL"|"es-ES"|"es-US"|"fr-CA"|"fr-FR"|"hi-IN"|"it-IT"|"ja-JP"|"ko-KR"|"pt-BR"|"pt-PT"|"zh-CN"|"en-NZ"|"en-ZA",
State = "CREATION_IN_PROGRESS"|"ACTIVE"|"CREATION_FAILED"|"DELETE_IN_PROGRESS",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$search_vocabularies(
InstanceId = "string",
MaxResults = 123,
NextToken = "string",
State = "CREATION_IN_PROGRESS"|"ACTIVE"|"CREATION_FAILED"|"DELETE_IN_PROGRESS",
NameStartsWith = "string",
LanguageCode = "ar-AE"|"de-CH"|"de-DE"|"en-AB"|"en-AU"|"en-GB"|"en-IE"|"en-IN"|"en-US"|"en-WL"|"es-ES"|"es-US"|"fr-CA"|"fr-FR"|"hi-IN"|"it-IT"|"ja-JP"|"ko-KR"|"pt-BR"|"pt-PT"|"zh-CN"|"en-NZ"|"en-ZA"
)