Class: Aws::LexModelBuildingService::Types::GetBotAliasesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetBotAliasesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_aliases ⇒ Array<Types::BotAliasMetadata>
An array of ‘BotAliasMetadata` objects, each describing a bot alias.
-
#next_token ⇒ String
A pagination token for fetching next page of aliases.
Instance Attribute Details
#bot_aliases ⇒ Array<Types::BotAliasMetadata>
An array of ‘BotAliasMetadata` objects, each describing a bot alias.
1090 1091 1092 1093 1094 1095 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1090 class GetBotAliasesResponse < Struct.new( :bot_aliases, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A pagination token for fetching next page of aliases. If the response to this call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of aliases, specify the pagination token in the next request.
1090 1091 1092 1093 1094 1095 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 1090 class GetBotAliasesResponse < Struct.new( :bot_aliases, :next_token) SENSITIVE = [] include Aws::Structure end |