interface RepositoryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.RepositoryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecr#RepositoryProps |
Java | software.amazon.awscdk.services.ecr.RepositoryProps |
Python | aws_cdk.aws_ecr.RepositoryProps |
TypeScript (source) | aws-cdk-lib » aws_ecr » RepositoryProps |
Example
const repository = new ecr.Repository(this, "TestRepository", {
repositoryName: "test-agent-runtime",
});
const agentRuntimeArtifact = agentcore.AgentRuntimeArtifact.fromEcrRepository(repository, "v1.0.0");
// Explicitly using public network (this is the default)
const runtime = new agentcore.Runtime(this, "MyAgentRuntime", {
runtimeName: "myAgent",
agentRuntimeArtifact: agentRuntimeArtifact,
networkConfiguration: agentcore.RuntimeNetworkConfiguration.usingPublicNetwork(),
});
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | Whether all images should be automatically deleted when the repository is removed from the stack or when the stack is deleted. |
| empty | boolean | If true, deleting the repository force deletes the contents of the repository. |
| 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. |
| image | Image[] | The image tag mutability exclusion filters 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. |
autoDeleteImages?
⚠️ Deprecated: Use emptyOnDelete instead.
Type:
boolean
(optional, default: false)
Whether all images should be automatically deleted when the repository is removed from the stack or when the stack is deleted.
Requires the removalPolicy to be set to RemovalPolicy.DESTROY.
emptyOnDelete?
Type:
boolean
(optional, default: false)
If true, deleting the repository force deletes the contents of the repository.
If false, the repository must be empty before attempting to delete it.
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.
imageTagMutabilityExclusionFilters?
Type:
Image[]
(optional, default: undefined - AWS ECR default is no exclusion filters)
The image tag mutability exclusion filters for the repository.
These filters specify which image tags can override the repository's default image tag mutability setting.
lifecycleRegistryId?
Type:
string
(optional, default: The default registry is assumed.)
The AWS account ID associated with the registry that contains the repository.
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.
The repository name must start with a letter and can only contain lowercase letters, numbers, hyphens, underscores, and forward slashes.
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.

.NET
Go
Java
Python
TypeScript (