Class: Aws::DocDB::Types::CertificateDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::CertificateDetails
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Returns the details of the DB instance’s server certificate.
For more information, see Updating Your Amazon DocumentDB TLS Certificates and Encrypting Data in Transit in the Amazon DocumentDB Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ca_identifier ⇒ String
The CA identifier of the CA certificate used for the DB instance's server certificate.
-
#valid_till ⇒ Time
The expiration date of the DB instance’s server certificate.
Instance Attribute Details
#ca_identifier ⇒ String
The CA identifier of the CA certificate used for the DB instance's server certificate.
224 225 226 227 228 229 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 224 class CertificateDetails < Struct.new( :ca_identifier, :valid_till) SENSITIVE = [] include Aws::Structure end |
#valid_till ⇒ Time
The expiration date of the DB instance’s server certificate.
224 225 226 227 228 229 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 224 class CertificateDetails < Struct.new( :ca_identifier, :valid_till) SENSITIVE = [] include Aws::Structure end |