Module: AWSCDK::ECR::TagMutability
- Defined in:
- ecr/tag_mutability.rb
Overview
The tag mutability setting for your repository.
Constant Summary collapse
- MUTABLE =
Deprecated.Note:
Default:
allow image tags to be overwritten.
Jsii::Enum.new("aws-cdk-lib.aws_ecr.TagMutability", "MUTABLE")
- IMMUTABLE =
Deprecated.Note:
Default:
all image tags within the repository will be immutable which will prevent them from being overwritten.
Jsii::Enum.new("aws-cdk-lib.aws_ecr.TagMutability", "IMMUTABLE")
- IMMUTABLE_WITH_EXCLUSION =
Deprecated.Note:
Default:
all image tags within the repository will be immutable, while allowing you to define some filters for tags that can be changed.
Jsii::Enum.new("aws-cdk-lib.aws_ecr.TagMutability", "IMMUTABLE_WITH_EXCLUSION")
- MUTABLE_WITH_EXCLUSION =
Deprecated.Note:
Default:
allow image tags to be overwritten while allowing you to define some filters for tags that should remain unchanged.
Jsii::Enum.new("aws-cdk-lib.aws_ecr.TagMutability", "MUTABLE_WITH_EXCLUSION")