Class: Aws::PaymentCryptography::Types::GetPublicKeyCertificateOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::PaymentCryptography::Types::GetPublicKeyCertificateOutput
- Defined in:
- gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:key_certificate, :key_certificate_chain]
Instance Attribute Summary collapse
-
#key_certificate ⇒ String
The public key component of the asymmetric key pair in a certificate PEM format (base64 encoded).
-
#key_certificate_chain ⇒ String
The root certificate authority (CA) that signed the public key certificate in PEM format (base64 encoded) of the asymmetric key pair.
Instance Attribute Details
#key_certificate ⇒ String
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 expires in 90 days.
657 658 659 660 661 662 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 657 class GetPublicKeyCertificateOutput < Struct.new( :key_certificate, :key_certificate_chain) SENSITIVE = [:key_certificate, :key_certificate_chain] include Aws::Structure end |
#key_certificate_chain ⇒ String
The root certificate authority (CA) that signed the public key certificate in PEM format (base64 encoded) of the asymmetric key pair.
657 658 659 660 661 662 |
# File 'gems/aws-sdk-paymentcryptography/lib/aws-sdk-paymentcryptography/types.rb', line 657 class GetPublicKeyCertificateOutput < Struct.new( :key_certificate, :key_certificate_chain) SENSITIVE = [:key_certificate, :key_certificate_chain] include Aws::Structure end |