revocation_status
Creates, updates, deletes, gets or lists a revocation_status resource.
Overview
| Name | revocation_status |
| Type | Resource |
| Id | aws.signer_data.revocation_status |
Fields
The following fields are returned by SELECT queries:
- get_revocation_status
| Name | Datatype | Description |
|---|---|---|
revoked_entity | string | List of entity identifiers that have been revoked. Empty if no revocations found. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_revocation_status | select | signatureTimestamp, platformId, profileVersionArn, jobArn, certificateHashes, region | Retrieves the revocation status for a signed artifact by checking if the signing profile, job, or certificate has been revoked. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
certificateHashes | array | List of certificate hashes to check for revocation. |
jobArn | string | The ARN of the signing job that produced the signature. |
platformId | string | The platform identifier for the signing platform used. |
profileVersionArn | string | The ARN of the signing profile version used to sign the artifact. |
region | string | AWS region (default: us-east-1) |
signatureTimestamp | string (date-time) | The timestamp when the artifact was signed, in ISO 8601 format. |
SELECT examples
- get_revocation_status
Retrieves the revocation status for a signed artifact by checking if the signing profile, job, or certificate has been revoked.
SELECT
revoked_entity
FROM aws.signer_data.revocation_status
WHERE signatureTimestamp = '{{ signatureTimestamp }}' -- required
AND platformId = '{{ platformId }}' -- required
AND profileVersionArn = '{{ profileVersionArn }}' -- required
AND jobArn = '{{ jobArn }}' -- required
AND certificateHashes = '{{ certificateHashes }}' -- required
AND region = '{{ region }}' -- required
;