Skip to content

Get Bot Alias

lexmodelbuildingservice_get_bot_alias R Documentation

Returns information about an Amazon Lex bot alias

Description

Returns information about an Amazon Lex bot alias. For more information about aliases, see versioning-aliases.

This operation requires permissions for the lex:GetBotAlias action.

Usage

lexmodelbuildingservice_get_bot_alias(name, botName)

Arguments

name

[required] The name of the bot alias. The name is case sensitive.

botName

[required] The name of the bot.

Value

A list with the following syntax:

list(
  name = "string",
  description = "string",
  botVersion = "string",
  botName = "string",
  lastUpdatedDate = as.POSIXct(
    "2015-01-01"
  ),
  createdDate = as.POSIXct(
    "2015-01-01"
  ),
  checksum = "string",
  conversationLogs = list(
    logSettings = list(
      list(
        logType = "AUDIO"|"TEXT",
        destination = "CLOUDWATCH_LOGS"|"S3",
        kmsKeyArn = "string",
        resourceArn = "string",
        resourcePrefix = "string"
      )
    ),
    iamRoleArn = "string"
  )
)

Request syntax

svc$get_bot_alias(
  name = "string",
  botName = "string"
)