interface RepositoryProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECR.RepositoryProps |
Java | software.amazon.awscdk.services.ecr.RepositoryProps |
Python | aws_cdk.aws_ecr.RepositoryProps |
TypeScript (source) | @aws-cdk/aws-ecr » RepositoryProps |
Example
new ecr.Repository(this, 'Repo', { imageTagMutability: ecr.TagMutability.IMMUTABLE });
Properties
Name | Type | Description |
---|---|---|
encryption? | Repository | The kind of server-side encryption to apply to this repository. |
encryption | IKey | External KMS key to use for repository encryption. |
image | boolean | Enable the scan on push when creating the repository. |
image | Tag | The tag mutability setting for the repository. |
lifecycle | string | The AWS account ID associated with the registry that contains the repository. |
lifecycle | Lifecycle [] | Life cycle rules to apply to this registry. |
removal | Removal | Determine what happens to the repository when the resource/stack is deleted. |
repository | string | Name for this repository. |
encryption?
Type:
Repository
(optional, default: KMS
if encryptionKey
is specified, or AES256
otherwise.)
The kind of server-side encryption to apply to this repository.
If you choose KMS, you can specify a KMS key via encryptionKey
. If
encryptionKey is not specified, an AWS managed KMS key is used.
encryptionKey?
Type:
IKey
(optional, default: If encryption is set to KMS
and this property is undefined,
an AWS managed KMS key is used.)
External KMS key to use for repository encryption.
The 'encryption' property must be either not specified or set to "KMS". An error will be emitted if encryption is set to "AES256".
imageScanOnPush?
Type:
boolean
(optional, default: false)
Enable the scan on push when creating the repository.
imageTagMutability?
Type:
Tag
(optional, default: TagMutability.MUTABLE)
The tag mutability setting for the repository.
If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten.
lifecycleRegistryId?
Type:
string
(optional, default: The default registry is assumed.)
The AWS account ID associated with the registry that contains the repository.
See also: https://docs.aws.amazon.com/AmazonECR/latest/APIReference/API_PutLifecyclePolicy.html
lifecycleRules?
Type:
Lifecycle
[]
(optional, default: No life cycle rules)
Life cycle rules to apply to this registry.
removalPolicy?
Type:
Removal
(optional, default: RemovalPolicy.Retain)
Determine what happens to the repository when the resource/stack is deleted.
repositoryName?
Type:
string
(optional, default: Automatically generated name.)
Name for this repository.