Describe Export
lexmodelsv2_describe_export | R Documentation |
Gets information about a specific export¶
Description¶
Gets information about a specific export.
Usage¶
Arguments¶
exportId
[required] The unique identifier of the export to describe.
Value¶
A list with the following syntax:
list(
exportId = "string",
resourceSpecification = list(
botExportSpecification = list(
botId = "string",
botVersion = "string"
),
botLocaleExportSpecification = list(
botId = "string",
botVersion = "string",
localeId = "string"
),
customVocabularyExportSpecification = list(
botId = "string",
botVersion = "string",
localeId = "string"
),
testSetExportSpecification = list(
testSetId = "string"
)
),
fileFormat = "LexJson"|"TSV"|"CSV",
exportStatus = "InProgress"|"Completed"|"Failed"|"Deleting",
failureReasons = list(
"string"
),
downloadUrl = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)