Returns metadata information for a specific bot
Returns metadata information for a specific bot. You must provide the bot name and the bot version or alias.
This operation requires permissions for the lex:GetBot
action.
lexmodelbuildingservice_get_bot(name, versionOrAlias)
name |
[required] The name of the bot. The name is case sensitive. |
versionOrAlias |
[required] The version or alias of the bot. |
A list with the following syntax:
list( name = "string", description = "string", intents = list( list( intentName = "string", intentVersion = "string" ) ), enableModelImprovements = TRUE|FALSE, nluIntentConfidenceThreshold = 123.0, clarificationPrompt = list( messages = list( list( contentType = "PlainText"|"SSML"|"CustomPayload", content = "string", groupNumber = 123 ) ), maxAttempts = 123, responseCard = "string" ), abortStatement = list( messages = list( list( contentType = "PlainText"|"SSML"|"CustomPayload", content = "string", groupNumber = 123 ) ), responseCard = "string" ), status = "BUILDING"|"READY"|"READY_BASIC_TESTING"|"FAILED"|"NOT_BUILT", failureReason = "string", lastUpdatedDate = as.POSIXct( "2015-01-01" ), createdDate = as.POSIXct( "2015-01-01" ), idleSessionTTLInSeconds = 123, voiceId = "string", checksum = "string", version = "string", locale = "de-DE"|"en-AU"|"en-GB"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT", childDirected = TRUE|FALSE, detectSentiment = TRUE|FALSE )
svc$get_bot( name = "string", versionOrAlias = "string" )
## Not run: # This example shows how to get configuration information for a bot. svc$get_bot( name = "DocOrderPizza", versionOrAlias = "$LATEST" ) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.