Values.GetBotChannelAssociationsRequestSourceReturns a list of all of the channels associated with the specified bot. The GetBotChannelAssociations operation requires permissions for the lex:GetBotChannelAssociations action.
type nonrec t = {botName : BotName.t;The name of the Amazon Lex bot in the association.
*)botAlias : AliasNameOrListAll.t;An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.
*)nextToken : NextToken.t option;A pagination token for fetching the next page of associations. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of associations, specify the pagination token in the next request.
*)maxResults : MaxResults.t option;The maximum number of associations to return in the response. The default is 50.
*)nameContains : BotChannelName.t option;Substring to match in channel association names. An association will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To return all bot channel associations, use a hyphen ("-") as the nameContains parameter.
*)}val make :
?nextToken:??? ->
?maxResults:??? ->
?nameContains:??? ->
botName:BotName.t ->
botAlias:AliasNameOrListAll.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of MaxResults.t | `String of BotName.t ]) list ]