Module Values.TrustStoreSource

A trust store.

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

    The trust store's ID.

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

    The trust store's Amazon Resource Name (ARN).

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

    The trust store's name.

    *)
  4. status : TrustStoreStatus.t option;
    (*

    The trust store's status.

    *)
  5. numberOfCaCertificates : Integer.t option;
    (*

    The trust store's number of CA certificates.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The trust store's last modified time.

    *)
  7. reason : String_.t option;
    (*

    The trust store's reason.

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

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

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?status:??? -> ?numberOfCaCertificates:??? -> ?lastModifiedTime:??? -> ?reason:??? -> ?useClientCertificateOCSPEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of Timestamp.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