Describe Custom Vocabulary Metadata
lexmodelsv2_describe_custom_vocabulary_metadata | R Documentation |
Provides metadata information about a custom vocabulary¶
Description¶
Provides metadata information about a custom vocabulary.
Usage¶
lexmodelsv2_describe_custom_vocabulary_metadata(botId, botVersion,
localeId)
Arguments¶
botId |
[required] The unique identifier of the bot that contains the custom vocabulary. |
botVersion |
[required] The bot version of the bot to return metadata for. |
localeId |
[required] The locale to return the custom vocabulary information
for. The locale must be |
Value¶
A list with the following syntax:
list(
botId = "string",
botVersion = "string",
localeId = "string",
customVocabularyStatus = "Ready"|"Deleting"|"Exporting"|"Importing"|"Creating",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$describe_custom_vocabulary_metadata(
botId = "string",
botVersion = "string",
localeId = "string"
)