registries
Creates, updates, deletes, gets or lists a registries resource.
Overview
| Name | registries |
| Type | Resource |
| Id | aws.ecr_public.registries |
Fields
The following fields are returned by SELECT queries:
- describe_registries
| Name | Datatype | Description |
|---|---|---|
aliases | array | An array of objects that represents the aliases for a public registry. |
registry_arn | string | The Amazon Resource Name (ARN) of the public registry. |
registry_id | string | The Amazon Web Services account ID that's associated with the registry. If you do not specify a registry, the default public registry is assumed. (pattern: <code>[0-9]{12}</code>) |
registry_uri | string | The URI of a public registry. The URI contains a universal prefix and the registry alias. |
verified | boolean | Indicates whether the account is a verified Amazon Web Services Marketplace vendor. If an account is verified, each public repository receives a verified account badge on the Amazon ECR Public Gallery. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_registries | select | region | Returns details for a public registry. |
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_registries
Returns details for a public registry.
SELECT
aliases,
registry_arn,
registry_id,
registry_uri,
verified
FROM aws.ecr_public.registries
WHERE region = '{{ region }}' -- required
;