Module Values.RevokeSigningProfileRequestSource

Changes the state of a signing profile to REVOKED. This indicates that signatures generated using the signing profile after an effective start date are no longer valid. A revoked profile is still viewable with the ListSigningProfiles operation, but it cannot perform new signing jobs. See Data Retention for more information on scheduled deletion of a revoked signing profile.

Sourcetype nonrec t = {
  1. profileName : ProfileName.t;
    (*

    The name of the signing profile to be revoked.

    *)
  2. profileVersion : ProfileVersion.t;
    (*

    The version of the signing profile to be revoked.

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

    The reason for revoking a signing profile.

    *)
  4. effectiveTime : Timestamp.t;
    (*

    A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.

    *)
}
Sourceval context_ : string
Sourceval make : profileName:ProfileName.t -> profileVersion:ProfileVersion.t -> reason:RevocationReasonString.t -> effectiveTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProfileName.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