Class: Aws::ACMPCA::Types::GetCertificateAuthorityCertificateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::GetCertificateAuthorityCertificateResponse
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate ⇒ String
Base64-encoded certificate authority (CA) certificate.
-
#certificate_chain ⇒ String
Base64-encoded certificate chain that includes any intermediate certificates and chains up to root certificate that you used to sign your private CA certificate.
Instance Attribute Details
#certificate ⇒ String
Base64-encoded certificate authority (CA) certificate.
1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1346 class GetCertificateAuthorityCertificateResponse < Struct.new( :certificate, :certificate_chain) SENSITIVE = [] include Aws::Structure end |
#certificate_chain ⇒ String
Base64-encoded certificate chain that includes any intermediate certificates and chains up to root certificate that you used to sign your private CA certificate. The chain does not include your private CA certificate. If this is a root CA, the value will be null.
1346 1347 1348 1349 1350 1351 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 1346 class GetCertificateAuthorityCertificateResponse < Struct.new( :certificate, :certificate_chain) SENSITIVE = [] include Aws::Structure end |