Class: Aws::ACM::Types::ExportCertificateResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::ExportCertificateResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:private_key]
Instance Attribute Summary collapse
-
#certificate ⇒ String
The base64 PEM-encoded certificate.
-
#certificate_chain ⇒ String
The base64 PEM-encoded certificate chain.
-
#private_key ⇒ String
The encrypted private key associated with the public key in the certificate.
Instance Attribute Details
#certificate ⇒ String
The base64 PEM-encoded certificate.
695 696 697 698 699 700 701 |
# File 'lib/aws-sdk-acm/types.rb', line 695 class ExportCertificateResponse < Struct.new( :certificate, :certificate_chain, :private_key) SENSITIVE = [:private_key] include Aws::Structure end |
#certificate_chain ⇒ String
The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.
695 696 697 698 699 700 701 |
# File 'lib/aws-sdk-acm/types.rb', line 695 class ExportCertificateResponse < Struct.new( :certificate, :certificate_chain, :private_key) SENSITIVE = [:private_key] include Aws::Structure end |
#private_key ⇒ String
The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.
695 696 697 698 699 700 701 |
# File 'lib/aws-sdk-acm/types.rb', line 695 class ExportCertificateResponse < Struct.new( :certificate, :certificate_chain, :private_key) SENSITIVE = [:private_key] include Aws::Structure end |