Class: Aws::BedrockAgent::Types::ListAgentAliasesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::ListAgentAliasesResponse
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#agent_alias_summaries ⇒ Array<Types::AgentAliasSummary>
A list of objects, each of which contains information about an alias of the agent.
-
#next_token ⇒ String
If the total number of results is greater than the
maxResults
value provided in the request, use this token when making another request in thenextToken
field to return the next batch of results.
Instance Attribute Details
#agent_alias_summaries ⇒ Array<Types::AgentAliasSummary>
A list of objects, each of which contains information about an alias of the agent.
6164 6165 6166 6167 6168 6169 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6164 class ListAgentAliasesResponse < Struct.new( :agent_alias_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the total number of results is greater than the maxResults
value provided in the request, use this token when making another
request in the nextToken
field to return the next batch of
results.
6164 6165 6166 6167 6168 6169 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6164 class ListAgentAliasesResponse < Struct.new( :agent_alias_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |