Module Values.TrustStoreSource

Information about a trust store.

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

    The name of the trust store.

    *)
  2. trustStoreArn : TrustStoreArn.t option;
    (*

    The Amazon Resource Name (ARN) of the trust store.

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

    The current status of the trust store.

    *)
  4. numberOfCaCertificates : NumberOfCaCertificates.t option;
    (*

    The number of ca certificates in the trust store.

    *)
  5. totalRevokedEntries : TotalRevokedEntries.t option;
    (*

    The number of revoked certificates in the trust store.

    *)
}
Sourceval make : ?name:??? -> ?trustStoreArn:??? -> ?status:??? -> ?numberOfCaCertificates:??? -> ?totalRevokedEntries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NumberOfCaCertificates.t | `Long of TotalRevokedEntries.t | `String of TrustStoreName.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