Class: Aws::BedrockAgentCoreControl::Types::AgentRuntimeArtifact
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::AgentRuntimeArtifact
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
AgentRuntimeArtifact is a union - when making an API calls you must set exactly one of the members.
AgentRuntimeArtifact is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AgentRuntimeArtifact corresponding to the set member.
The artifact of the agent.
Defined Under Namespace
Classes: CodeConfiguration, ContainerConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_configuration ⇒ Types::CodeConfiguration
The code configuration for the agent runtime artifact, including the source code location and execution settings.
-
#container_configuration ⇒ Types::ContainerConfiguration
The container configuration for the agent artifact.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#code_configuration ⇒ Types::CodeConfiguration
The code configuration for the agent runtime artifact, including the source code location and execution settings.
158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 158 class AgentRuntimeArtifact < Struct.new( :container_configuration, :code_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContainerConfiguration < AgentRuntimeArtifact; end class CodeConfiguration < AgentRuntimeArtifact; end class Unknown < AgentRuntimeArtifact; end end |
#container_configuration ⇒ Types::ContainerConfiguration
The container configuration for the agent artifact.
158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 158 class AgentRuntimeArtifact < Struct.new( :container_configuration, :code_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContainerConfiguration < AgentRuntimeArtifact; end class CodeConfiguration < AgentRuntimeArtifact; end class Unknown < AgentRuntimeArtifact; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
158 159 160 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 158 def unknown @unknown end |