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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acm/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)


705
706
707
708
709
710
711
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 705

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)


705
706
707
708
709
710
711
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 705

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)


705
706
707
708
709
710
711
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 705

class ExportCertificateResponse < Struct.new(
  :certificate,
  :certificate_chain,
  :private_key)
  SENSITIVE = [:private_key]
  include Aws::Structure
end