Class: Aws::PaymentCryptography::Types::GetPublicKeyCertificateOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_certificateString

The public key component of the asymmetric key pair in a certificate PEM format (base64 encoded). It is signed by the root certificate authority (CA). The certificate is valid for 90 days from the time it is issued. The service returns a cached certificate if one exists with at least 30 days of remaining validity. Otherwise, a new 90-day certificate is issued.

Returns:

  • (String)


1090
1091
1092
1093
1094
1095
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1090

class GetPublicKeyCertificateOutput < Struct.new(
  :key_certificate,
  :key_certificate_chain)
  SENSITIVE = []
  include Aws::Structure
end

#key_certificate_chainString

The root certificate authority (CA) that signed the public key certificate in PEM format (base64 encoded) of the asymmetric key pair.

Returns:

  • (String)


1090
1091
1092
1093
1094
1095
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 1090

class GetPublicKeyCertificateOutput < Struct.new(
  :key_certificate,
  :key_certificate_chain)
  SENSITIVE = []
  include Aws::Structure
end