Describe Bot Alias
lexmodelsv2_describe_bot_alias | R Documentation |
Get information about a specific bot alias¶
Description¶
Get information about a specific bot alias.
Usage¶
Arguments¶
botAliasId
[required] The identifier of the bot alias to describe.
botId
[required] The identifier of the bot associated with the bot alias to describe.
Value¶
A list with the following syntax:
list(
botAliasId = "string",
botAliasName = "string",
description = "string",
botVersion = "string",
botAliasLocaleSettings = list(
list(
enabled = TRUE|FALSE,
codeHookSpecification = list(
lambdaCodeHook = list(
lambdaARN = "string",
codeHookInterfaceVersion = "string"
)
)
)
),
conversationLogSettings = list(
textLogSettings = list(
list(
enabled = TRUE|FALSE,
destination = list(
cloudWatch = list(
cloudWatchLogGroupArn = "string",
logPrefix = "string"
)
),
selectiveLoggingEnabled = TRUE|FALSE
)
),
audioLogSettings = list(
list(
enabled = TRUE|FALSE,
destination = list(
s3Bucket = list(
kmsKeyArn = "string",
s3BucketArn = "string",
logPrefix = "string"
)
),
selectiveLoggingEnabled = TRUE|FALSE
)
)
),
sentimentAnalysisSettings = list(
detectSentiment = TRUE|FALSE
),
botAliasHistoryEvents = list(
list(
botVersion = "string",
startDate = as.POSIXct(
"2015-01-01"
),
endDate = as.POSIXct(
"2015-01-01"
)
)
),
botAliasStatus = "Creating"|"Available"|"Deleting"|"Failed",
botId = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
parentBotNetworks = list(
list(
botId = "string",
botVersion = "string"
)
)
)