signatures
Creates, updates, deletes, gets or lists a signatures resource.
Overview
| Name | signatures |
| Type | Resource |
| Id | aws.signer.signatures |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
revoke_signature | update | job_id, region, reason | Changes the state of a signing job to REVOKED. This indicates that the signature is no longer valid. |
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 |
|---|---|---|
job_id | string | ID of the signing job to be revoked. |
region | string | AWS region (default: us-east-1) |
UPDATE examples
- revoke_signature
Changes the state of a signing job to REVOKED. This indicates that the signature is no longer valid.
UPDATE aws.signer.signatures
SET
jobOwner = '{{ jobOwner }}',
reason = '{{ reason }}'
WHERE
job_id = '{{ job_id }}' --required
AND region = '{{ region }}' --required
AND reason = '{{ reason }}' --required;