Values.RevokeSigningProfileRequestSourceChanges 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.
type nonrec t = {profileName : ProfileName.t;The name of the signing profile to be revoked.
*)profileVersion : ProfileVersion.t;The version of the signing profile to be revoked.
*)reason : RevocationReasonString.t;The reason for revoking a signing profile.
*)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.
*)}val make :
profileName:ProfileName.t ->
profileVersion:ProfileVersion.t ->
reason:RevocationReasonString.t ->
effectiveTime:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of ProfileName.t | `Timestamp of Timestamp.t ])
list ]