Class: Aws::ACMPCA::Types::GetCertificateAuthorityCertificateResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

Base64-encoded certificate authority (CA) certificate.

Returns:

  • (String)


1310
1311
1312
1313
1314
1315
# File 'lib/aws-sdk-acmpca/types.rb', line 1310

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

#certificate_chainString

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.

Returns:

  • (String)


1310
1311
1312
1313
1314
1315
# File 'lib/aws-sdk-acmpca/types.rb', line 1310

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