Class: Aws::BedrockAgentCoreControl::Types::AgentArtifact
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::AgentArtifact
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
AgentArtifact is a union - when making an API calls you must set exactly one of the members.
Note:
AgentArtifact is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AgentArtifact corresponding to the set member.
The artifact of the agent.
Direct Known Subclasses
Defined Under Namespace
Classes: ContainerConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_configuration ⇒ Types::ContainerConfiguration
The container configuration for the agent artifact.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#container_configuration ⇒ Types::ContainerConfiguration
The container configuration for the agent artifact.
84 85 86 87 88 89 90 91 92 93 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 84 class AgentArtifact < Struct.new( :container_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ContainerConfiguration < AgentArtifact; end class Unknown < AgentArtifact; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
84 85 86 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 84 def unknown @unknown end |