Get Bot Channel Association
| lexmodelbuildingservice_get_bot_channel_association | R Documentation | 
Returns information about the association between an Amazon Lex bot and a messaging platform¶
Description¶
Returns information about the association between an Amazon Lex bot and a messaging platform.
This operation requires permissions for the
lex:GetBotChannelAssociation action.
Usage¶
lexmodelbuildingservice_get_bot_channel_association(name, botName,
  botAlias)
Arguments¶
name | 
[required] The name of the association between the bot and the channel. The name is case sensitive.  | 
botName | 
[required] The name of the Amazon Lex bot.  | 
botAlias | 
[required] An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.  | 
Value¶
A list with the following syntax:
list(
  name = "string",
  description = "string",
  botAlias = "string",
  botName = "string",
  createdDate = as.POSIXct(
    "2015-01-01"
  ),
  type = "Facebook"|"Slack"|"Twilio-Sms"|"Kik",
  botConfiguration = list(
    "string"
  ),
  status = "IN_PROGRESS"|"CREATED"|"FAILED",
  failureReason = "string"
)
Request syntax¶
svc$get_bot_channel_association(
  name = "string",
  botName = "string",
  botAlias = "string"
)