Module Values.TrustStoreRevocationSource

Information about a revocation file in use by a trust store.

Sourcetype nonrec t = {
  1. trustStoreArn : TrustStoreArn.t option;
    (*

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

    *)
  2. revocationId : RevocationId.t option;
    (*

    The revocation ID of the revocation file.

    *)
  3. revocationType : RevocationType.t option;
    (*

    The type of revocation file.

    *)
  4. numberOfRevokedEntries : NumberOfRevokedEntries.t option;
    (*

    The number of revoked certificates.

    *)
}
Sourceval make : ?trustStoreArn:??? -> ?revocationId:??? -> ?revocationType:??? -> ?numberOfRevokedEntries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of RevocationId.t | `String of TrustStoreArn.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