Class: Aws::DocDB::Types::CertificateDetails

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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*.

[1]: docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html [2]: docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ca_identifierString

The CA identifier of the CA certificate used for the DB instance’s server certificate.

Returns:

  • (String)


224
225
226
227
228
229
# File 'lib/aws-sdk-docdb/types.rb', line 224

class CertificateDetails < Struct.new(
  :ca_identifier,
  :valid_till)
  SENSITIVE = []
  include Aws::Structure
end

#valid_tillTime

The expiration date of the DB instance’s server certificate.

Returns:

  • (Time)


224
225
226
227
228
229
# File 'lib/aws-sdk-docdb/types.rb', line 224

class CertificateDetails < Struct.new(
  :ca_identifier,
  :valid_till)
  SENSITIVE = []
  include Aws::Structure
end