Class: Aws::BedrockAgentCoreControl::Types::CertificateLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::CertificateLocation
- 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
-
#secrets_manager ⇒ Types::SecretsManagerLocation
The Amazon Web Services Secrets Manager location of the certificate.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#secrets_manager ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
867 868 869 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 867 def unknown @unknown end |