Module Values.GetRevocationStatusRequestSource

Request structure for checking revocation status.

Sourcetype nonrec t = {
  1. signatureTimestamp : Timestamp.t;
    (*

    The timestamp when the artifact was signed, in ISO 8601 format.

    *)
  2. platformId : PlatformId.t;
    (*

    The platform identifier for the signing platform used.

    *)
  3. profileVersionArn : Arn.t;
    (*

    The ARN of the signing profile version used to sign the artifact.

    *)
  4. jobArn : Arn.t;
    (*

    The ARN of the signing job that produced the signature.

    *)
  5. certificateHashes : CertificateHashes.t;
    (*

    List of certificate hashes to check for revocation.

    *)
}
Sourceval context_ : string
Sourceval make : signatureTimestamp:Timestamp.t -> platformId:PlatformId.t -> profileVersionArn:Arn.t -> jobArn:Arn.t -> certificateHashes:CertificateHashes.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CertificateHash.t ] list | `String of PlatformId.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