Skip to main content

signatures

Creates, updates, deletes, gets or lists a signatures resource.

Overview

Namesignatures
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
revoke_signatureupdatejob_id, region, reasonChanges 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.

NameDatatypeDescription
job_idstringID of the signing job to be revoked.
regionstringAWS region (default: us-east-1)

UPDATE examples

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;