Class: Aws::BedrockAgentCore::Types::ListCodeInterpreterSessionsRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#code_interpreter_identifierString

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.

Returns:

  • (String)


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_resultsInteger

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.

Returns:

  • (Integer)


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_tokenString

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.

Returns:

  • (String)


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

#statusString

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.

Returns:

  • (String)


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