aws.signer.list_signing_jobs
Example SQL Queries
SELECT * FROMaws.signer.list_signing_jobs;Description
Lists all your signing jobs. You can use the maxResults parameter to limit the number of signing jobs that are returned in the response. If additional jobs remain to be listed, AWS Signer returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that Signer returns in the nextToken parameter until all of your signing jobs have been returned.
Table Definition
| Column Name | Column Data Type |
|---|---|
| is_revoked Input Column Indicates whether the signing job is revoked. | BOOLEAN |
| job_invoker Input Column The AWS account ID of the job invoker. | VARCHAR |
| platform_id Input Column The unique identifier for a signing platform. | VARCHAR |
| requested_by Input Column The IAM principal that requested the signing job. | VARCHAR |
| signature_expires_after Input Column Filters results to return only signing jobs with signatures expiring after a specified timestamp. | TIMESTAMP_S |
| signature_expires_before Input Column Filters results to return only signing jobs with signatures expiring before a specified timestamp. | TIMESTAMP_S |
| status Input Column The status of the signing job. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| created_at The date and time that the signing job was created. | TIMESTAMP_S |
| job_id The ID of the signing job. | VARCHAR |
| job_owner The AWS account ID of the job owner. | VARCHAR |
| platform_display_name The name of a signing platform. | VARCHAR |
| profile_name The name of the signing profile that created a signing job. | VARCHAR |
| profile_version The version of the signing profile that created a signing job. | VARCHAR |
| signature_expires_at The time when the signature of a signing job expires. | TIMESTAMP_S |
| signed_object A SignedObject structure that contains information about a signing job's signed code image. | STRUCT( |
Show child fields
| |
| signing_material A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job. | STRUCT( |
Show child fields
| |
| source A Source that contains information about a signing job's code image source. | STRUCT( |
Show child fields
| |