Class: Aws::BedrockAgentCoreControl::Types::CertificateLocation

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

Overview

Note:

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

Note:

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

The location from which to retrieve a certificate.

Defined Under Namespace

Classes: SecretsManager, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#secrets_managerTypes::SecretsManagerLocation

The Amazon Web Services Secrets Manager location of the certificate.



867
868
869
870
871
872
873
874
875
876
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 867

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

  class SecretsManager < CertificateLocation; end
  class Unknown < CertificateLocation; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



867
868
869
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 867

def unknown
  @unknown
end