Module Values.TrustStoreSource

The trust store used for mutual TLS authentication. It contains the certificate authority (CA) certificates and optional certificate revocation list (CRL).

Sourcetype nonrec t = {
  1. cAContent : CAContent.t;
    (*

    The PEM-encoded certificate authority (CA) certificates bundle for the trust store.

    *)
  2. crlContent : CrlContent.t option;
    (*

    The PEM-encoded certificate revocation lists (CRLs) for the trust store. There can be one CRL per certificate authority (CA) in the trust store.

    *)
  3. kmsKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key used to encrypt the trust store contents.

    *)
}
Sourceval context_ : string
Sourceval make : ?crlContent:??? -> ?kmsKeyArn:??? -> cAContent:CAContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CAContent.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