Module Values.RevokeSignatureRequestSource

Changes the state of a signing job to REVOKED. This indicates that the signature is no longer valid.

Sourcetype nonrec t = {
  1. jobId : JobId.t;
    (*

    ID of the signing job to be revoked.

    *)
  2. jobOwner : AccountId.t option;
    (*

    AWS account ID of the job owner.

    *)
  3. reason : RevocationReasonString.t;
    (*

    The reason for revoking the signing job.

    *)
}
Sourceval context_ : string
Sourceval make : ?jobOwner:??? -> jobId:JobId.t -> reason:RevocationReasonString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobId.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