image_signing_status
Creates, updates, deletes, gets or lists an image_signing_status resource.
Overview
| Name | image_signing_status |
| Type | Resource |
| Id | aws.ecr.image_signing_status |
Fields
The following fields are returned by SELECT queries:
- describe_image_signing_status
| Name | Datatype | Description |
|---|---|---|
image_id | object | An object with identifying information for an image in an Amazon ECR repository. |
registry_id | string | The Amazon Web Services account ID associated with the registry. (pattern: <code>[0-9]{12}</code>) |
repository_name | string | The name of the repository. (pattern: <code>[a-z0-9]+((.||__|-+)[a-z0-9]+)*(/[a-z0-9]+((.||__|-+)[a-z0-9]+))</code>) |
signing_statuses | array | A list of signing statuses for the specified image. Each status corresponds to a signing profile. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_image_signing_status | select | region | 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. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_image_signing_status
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
;