Module Values.CreateTrustStoreRequestSource

Creates a trust store.

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

    A name for the trust store.

    *)
  2. caCertificatesBundleSource : CaCertificatesBundleSource.t;
    (*

    The CA certificates bundle source for the trust store.

    *)
  3. useClientCertificateOCSPEndpoint : Boolean.t option;
    (*

    A Boolean that determines whether to use the CA certificate's OCSP endpoint to check certificate revocation status.

    *)
  4. tags : Tags.t option;
}
Sourceval context_ : string
Sourceval make : ?useClientCertificateOCSPEndpoint:??? -> ?tags:??? -> name:String_.t -> caCertificatesBundleSource:CaCertificatesBundleSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Structure of (string * [> `String of String_.t ]) list ]) list ]) 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