Class: Aws::BedrockAgentCoreControl::Types::AgentRuntimeArtifact

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

Overview

Note:

AgentRuntimeArtifact is a union - when making an API calls you must set exactly one of the members.

Note:

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

Instance Attribute Details

#code_configurationTypes::CodeConfiguration

The code configuration for the agent runtime artifact, including the source code location and execution settings.



89
90
91
92
93
94
95
96
97
98
99
100
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 89

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_configurationTypes::ContainerConfiguration

The container configuration for the agent artifact.



89
90
91
92
93
94
95
96
97
98
99
100
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 89

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



89
90
91
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 89

def unknown
  @unknown
end