Class: Aws::BedrockAgentCoreControl::Types::CodeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CodeConfiguration
- 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
-
#code ⇒ Types::Code
The source code location and configuration details.
-
#entry_point ⇒ Array<String>
The entry point for the code execution, specifying the function or method that should be invoked when the code runs.
-
#runtime ⇒ String
The runtime environment for executing the agent code.
Instance Attribute Details
#code ⇒ Types::Code
The source code location and configuration details.
1026 1027 1028 1029 1030 1031 1032 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1026 class CodeConfiguration < Struct.new( :code, :runtime, :entry_point) SENSITIVE = [] include Aws::Structure end |
#entry_point ⇒ Array<String>
The entry point for the code execution, specifying the function or method that should be invoked when the code runs.
1026 1027 1028 1029 1030 1031 1032 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1026 class CodeConfiguration < Struct.new( :code, :runtime, :entry_point) SENSITIVE = [] include Aws::Structure end |
#runtime ⇒ String
The runtime environment for executing the agent code. Specify the programming language and version to use for the agent runtime. For valid values, see the list of supported runtimes.
1026 1027 1028 1029 1030 1031 1032 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1026 class CodeConfiguration < Struct.new( :code, :runtime, :entry_point) SENSITIVE = [] include Aws::Structure end |