Class: Aws::BedrockAgentCore::Types::ListCodeInterpreterSessionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::ListCodeInterpreterSessionsRequest
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_interpreter_identifier ⇒ String
The unique identifier of the code interpreter to list sessions for.
-
#max_results ⇒ Integer
The maximum number of results to return in a single call.
-
#next_token ⇒ String
The token for the next set of results.
-
#status ⇒ String
The status of the code interpreter sessions to list.
Instance Attribute Details
#code_interpreter_identifier ⇒ String
The unique identifier of the code interpreter to list sessions for. If specified, only sessions for this code interpreter are returned. If not specified, sessions for all code interpreters are returned.
2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2925 class ListCodeInterpreterSessionsRequest < Struct.new( :code_interpreter_identifier, :max_results, :next_token, :status) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in a single call. The
default value is 10. Valid values range from 1 to 100. To retrieve
the remaining results, make another call with the returned
nextToken value.
2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2925 class ListCodeInterpreterSessionsRequest < Struct.new( :code_interpreter_identifier, :max_results, :next_token, :status) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results. If not specified, Amazon Bedrock AgentCore returns the first page of results.
2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2925 class ListCodeInterpreterSessionsRequest < Struct.new( :code_interpreter_identifier, :max_results, :next_token, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the code interpreter sessions to list. Valid values include ACTIVE, STOPPING, and STOPPED. If not specified, sessions with any status are returned.
2925 2926 2927 2928 2929 2930 2931 2932 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 2925 class ListCodeInterpreterSessionsRequest < Struct.new( :code_interpreter_identifier, :max_results, :next_token, :status) SENSITIVE = [] include Aws::Structure end |