Class: Aws::BedrockAgentCoreControl::Types::CodeConfiguration

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

Overview

The configuration for the source code that defines how the agent runtime code should be executed, including the code location, runtime environment, and entry point.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeTypes::Code

The source code location and configuration details.

Returns:



745
746
747
748
749
750
751
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 745

class CodeConfiguration < Struct.new(
  :code,
  :runtime,
  :entry_point)
  SENSITIVE = []
  include Aws::Structure
end

#entry_pointArray<String>

The entry point for the code execution, specifying the function or method that should be invoked when the code runs.

Returns:

  • (Array<String>)


745
746
747
748
749
750
751
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 745

class CodeConfiguration < Struct.new(
  :code,
  :runtime,
  :entry_point)
  SENSITIVE = []
  include Aws::Structure
end

#runtimeString

The runtime environment for executing the code (for example, Python 3.9 or Node.js 18).

Returns:

  • (String)


745
746
747
748
749
750
751
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 745

class CodeConfiguration < Struct.new(
  :code,
  :runtime,
  :entry_point)
  SENSITIVE = []
  include Aws::Structure
end