Module Values.CertificatesSource

Contains one or more certificates or a certificate signing request (CSR).

Sourcetype nonrec t = {
  1. clusterCsr : Cert.t option;
    (*

    The cluster's certificate signing request (CSR). The CSR exists only when the cluster's state is UNINITIALIZED.

    *)
  2. hsmCertificate : Cert.t option;
    (*

    The HSM certificate issued (signed) by the HSM hardware.

    *)
  3. awsHardwareCertificate : Cert.t option;
    (*

    The HSM hardware certificate issued (signed) by CloudHSM.

    *)
  4. manufacturerHardwareCertificate : Cert.t option;
    (*

    The HSM hardware certificate issued (signed) by the hardware manufacturer.

    *)
  5. clusterCertificate : Cert.t option;
    (*

    The cluster certificate issued (signed) by the issuing certificate authority (CA) of the cluster's owner.

    *)
}
Sourceval make : ?clusterCsr:??? -> ?hsmCertificate:??? -> ?awsHardwareCertificate:??? -> ?manufacturerHardwareCertificate:??? -> ?clusterCertificate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Cert.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