Describe Bot Recommendation
lexmodelsv2_describe_bot_recommendation | R Documentation |
Provides metadata information about a bot recommendation¶
Description¶
Provides metadata information about a bot recommendation. This information will enable you to get a description on the request inputs, to download associated transcripts after processing is complete, and to download intents and slot-types generated by the bot recommendation.
Usage¶
Arguments¶
botId
[required] The unique identifier of the bot associated with the bot recommendation.
botVersion
[required] The version of the bot associated with the bot recommendation.
localeId
[required] The identifier of the language and locale of the bot recommendation to describe. The string must match one of the supported locales. For more information, see Supported languages.
botRecommendationId
[required] The identifier of the bot recommendation to describe.
Value¶
A list with the following syntax:
list(
botId = "string",
botVersion = "string",
localeId = "string",
botRecommendationStatus = "Processing"|"Deleting"|"Deleted"|"Downloading"|"Updating"|"Available"|"Failed"|"Stopping"|"Stopped",
botRecommendationId = "string",
failureReasons = list(
"string"
),
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
transcriptSourceSetting = list(
s3BucketTranscriptSource = list(
s3BucketName = "string",
pathFormat = list(
objectPrefixes = list(
"string"
)
),
transcriptFormat = "Lex",
transcriptFilter = list(
lexTranscriptFilter = list(
dateRangeFilter = list(
startDateTime = as.POSIXct(
"2015-01-01"
),
endDateTime = as.POSIXct(
"2015-01-01"
)
)
)
),
kmsKeyArn = "string"
)
),
encryptionSetting = list(
kmsKeyArn = "string",
botLocaleExportPassword = "string",
associatedTranscriptsPassword = "string"
),
botRecommendationResults = list(
botLocaleExportUrl = "string",
associatedTranscriptsUrl = "string",
statistics = list(
intents = list(
discoveredIntentCount = 123
),
slotTypes = list(
discoveredSlotTypeCount = 123
)
)
)
)