Module Values.HsmClientCertificateSource

Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.

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

    The identifier of the HSM client certificate.

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

    The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.

    *)
  3. tags : TagList.t option;
    (*

    The list of tags for the HSM client certificate.

    *)
}
Sourceval make : ?hsmClientCertificateIdentifier:??? -> ?hsmClientCertificatePublicKey:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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