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 code (for example, Python 3.9 or Node.js 18).
Instance Attribute Details
#code ⇒ Types::Code
The source code location and configuration details.
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_point ⇒ Array<String>
The entry point for the code execution, specifying the function or method that should be invoked when the code runs.
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 |
#runtime ⇒ String
The runtime environment for executing the code (for example, Python 3.9 or Node.js 18).
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 |