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

Inherits:
Struct
  • Object
show all
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

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 '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_tillTime

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

Returns:

  • (Time)


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