/signing-profiles/{profileName}/revoke
http://signer.{region}.amazonaws.com/signing-profiles/{profileName}/revokeChanges 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.
Path Parameters
The name of the signing profile to be revoked.
Body Params
The reason for revoking a signing profile.
A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.
The version of the signing profile to be revoked.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request PUT \2 --url 'http://signer.{region}.amazonaws.com/signing-profiles/{profileName}/revoke' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}