# Generated by default/object.tt package Paws::LexModels::BotChannelAssociation; use Moose; has BotAlias => (is => 'ro', isa => 'Str', request_name => 'botAlias', traits => ['NameInRequest']); has BotConfiguration => (is => 'ro', isa => 'Paws::LexModels::ChannelConfigurationMap', request_name => 'botConfiguration', traits => ['NameInRequest']); has BotName => (is => 'ro', isa => 'Str', request_name => 'botName', traits => ['NameInRequest']); has CreatedDate => (is => 'ro', isa => 'Str', request_name => 'createdDate', traits => ['NameInRequest']); has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']); has FailureReason => (is => 'ro', isa => 'Str', request_name => 'failureReason', traits => ['NameInRequest']); has Name => (is => 'ro', isa => 'Str', request_name => 'name', traits => ['NameInRequest']); has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']); has Type => (is => 'ro', isa => 'Str', request_name => 'type', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::LexModels::BotChannelAssociation =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::LexModels::BotChannelAssociation object: $service_obj->Method(Att1 => { BotAlias => $value, ..., Type => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::LexModels::BotChannelAssociation object: $result = $service_obj->Method(...); $result->Att1->BotAlias =head1 DESCRIPTION Represents an association between an Amazon Lex bot and an external messaging platform. =head1 ATTRIBUTES =head2 BotAlias => Str An alias pointing to the specific version of the Amazon Lex bot to which this association is being made. =head2 BotConfiguration => L Provides information necessary to communicate with the messaging platform. =head2 BotName => Str The name of the Amazon Lex bot to which this association is being made. Currently, Amazon Lex supports associations with Facebook and Slack, and Twilio. =head2 CreatedDate => Str The date that the association between the Amazon Lex bot and the channel was created. =head2 Description => Str A text description of the association you are creating. =head2 FailureReason => Str If C is C, Amazon Lex provides the reason that it failed to create the association. =head2 Name => Str The name of the association between the bot and the channel. =head2 Status => Str The status of the bot channel. =over =item * C - The channel has been created and is ready for use. =item * C - Channel creation is in progress. =item * C - There was an error creating the channel. For information about the reason for the failure, see the C field. =back =head2 Type => Str Specifies the type of association by indicating the type of channel being established between the Amazon Lex bot and the external messaging platform. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut