Module Values.CertificateDetailsSource

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.

Sourcetype nonrec t = {
  1. cAIdentifier : String_.t option;
    (*

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

    *)
  2. validTill : TStamp.t option;
    (*

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

    *)
}
Sourceval make : ?cAIdentifier:??? -> ?validTill:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of TStamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t