Class: Aws::BedrockAgentCoreControl::Types::Code

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

Overview

Note:

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

Note:

Code is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Code corresponding to the set member.

The source code configuration that specifies the location and details of the code to be executed.

Defined Under Namespace

Classes: S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3Types::S3Location

The Amazon Amazon S3 object that contains the source code for the agent runtime.

Returns:



969
970
971
972
973
974
975
976
977
978
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 969

class Code < Struct.new(
  :s3,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < Code; end
  class Unknown < Code; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



969
970
971
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 969

def unknown
  @unknown
end