GetBotChannelAssociationsRequest

public struct GetBotChannelAssociationsRequest : AWSShape
extension LexModelBuildingService.GetBotChannelAssociationsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An alias pointing to the specific version of the Amazon Lex bot to which this association is being made.

    Declaration

    Swift

    public let botAlias: String
  • The name of the Amazon Lex bot in the association.

    Declaration

    Swift

    public let botName: String
  • The maximum number of associations to return in the response. The default is 50.

    Declaration

    Swift

    public let maxResults: Int?
  • 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.

    Declaration

    Swift

    public let nameContains: String?
  • 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.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(botAlias: String, botName: String, maxResults: Int? = nil, nameContains: String? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws