Skip to main content

image_signing_status

Creates, updates, deletes, gets or lists an image_signing_status resource.

Overview

Nameimage_signing_status
TypeResource
Idaws.ecr.image_signing_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
image_idobjectAn object with identifying information for an image in an Amazon ECR repository.
registry_idstringThe Amazon Web Services account ID associated with the registry. (pattern: <code>[0-9]{12}</code>)
repository_namestringThe name of the repository. (pattern: <code>[a-z0-9]+((.||__|-+)[a-z0-9]+)*(/[a-z0-9]+((.||__|-+)[a-z0-9]+))</code>)
signing_statusesarrayA list of signing statuses for the specified image. Each status corresponds to a signing profile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_image_signing_statusselectregionReturns the signing status for a specified image. If the image matched signing rules that reference different signing profiles, a status is returned for each profile. For more information, see Managed signing in the Amazon Elastic Container Registry User Guide.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the signing status for a specified image. If the image matched signing rules that reference different signing profiles, a status is returned for each profile. For more information, see Managed signing in the Amazon Elastic Container Registry User Guide.

SELECT
image_id,
registry_id,
repository_name,
signing_statuses
FROM aws.ecr.image_signing_status
WHERE region = '{{ region }}' -- required
;