Class: Aws::BedrockAgentRuntime::Types::CodeInterpreterInvocationInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-bedrockagentruntime/types.rb

Overview

Contains information about the code interpreter being invoked.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The code for the code interpreter to use.

Returns:

  • (String)


764
765
766
767
768
769
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 764

class CodeInterpreterInvocationInput < Struct.new(
  :code,
  :files)
  SENSITIVE = []
  include Aws::Structure
end

#filesArray<String>

Files that are uploaded for code interpreter to use.

Returns:

  • (Array<String>)


764
765
766
767
768
769
# File 'lib/aws-sdk-bedrockagentruntime/types.rb', line 764

class CodeInterpreterInvocationInput < Struct.new(
  :code,
  :files)
  SENSITIVE = []
  include Aws::Structure
end