Module Values_0.CertificateSource

A CA certificate for an Amazon Web Services account. For more information, see Using SSL/TLS to encrypt a connection to a DB instance in the Amazon RDS User Guide and Using SSL/TLS to encrypt a connection to a DB cluster in the Amazon Aurora User Guide.

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

    The unique key that identifies a certificate.

    *)
  2. certificateType : String_.t option;
    (*

    The type of the certificate.

    *)
  3. thumbprint : String_.t option;
    (*

    The thumbprint of the certificate.

    *)
  4. validFrom : TStamp.t option;
    (*

    The starting date from which the certificate is valid.

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

    The final date that the certificate continues to be valid.

    *)
  6. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the certificate.

    *)
  7. customerOverride : BooleanOptional.t option;
    (*

    Indicates whether there is an override for the default certificate identifier.

    *)
  8. customerOverrideValidTill : TStamp.t option;
    (*

    If there is an override for the default certificate identifier, when the override expires.

    *)
}
Sourceval make : ?certificateIdentifier:??? -> ?certificateType:??? -> ?thumbprint:??? -> ?validFrom:??? -> ?validTill:??? -> ?certificateArn:??? -> ?customerOverride:??? -> ?customerOverrideValidTill:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `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