Creates an ECR Repository with ZAR's standard lifecycle rules and cross-account pull permissions.
Features:
const repo = new EcrRepository(this, 'MyAppRepo', { repositoryName: 'my-app', trustedAwsAccounts: ['123456789012', '987654321098'],}); Copy
const repo = new EcrRepository(this, 'MyAppRepo', { repositoryName: 'my-app', trustedAwsAccounts: ['123456789012', '987654321098'],});
Readonly
The AWS account ID where this repository is deployed.
The underlying ECR repository.
Creates an ECR Repository with ZAR's standard lifecycle rules and cross-account pull permissions.
Features:
Example