Class: Aws::ACM::Types::ExportCertificateResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acm/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:private_key]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The base64 PEM-encoded certificate.

Returns:

  • (String)


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_chainString

The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.

Returns:

  • (String)


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_keyString

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.

Returns:

  • (String)


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