Interface CfnRepositoryCreationTemplateMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRepositoryCreationTemplateMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:58.836Z") @Stability(Stable) public interface CfnRepositoryCreationTemplateMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnRepositoryCreationTemplatePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ecr.*;
 CfnRepositoryCreationTemplateMixinProps cfnRepositoryCreationTemplateMixinProps = CfnRepositoryCreationTemplateMixinProps.builder()
         .appliedFor(List.of("appliedFor"))
         .customRoleArn("customRoleArn")
         .description("description")
         .encryptionConfiguration(EncryptionConfigurationProperty.builder()
                 .encryptionType("encryptionType")
                 .kmsKey("kmsKey")
                 .build())
         .imageTagMutability("imageTagMutability")
         .imageTagMutabilityExclusionFilters(List.of(ImageTagMutabilityExclusionFilterProperty.builder()
                 .imageTagMutabilityExclusionFilterType("imageTagMutabilityExclusionFilterType")
                 .imageTagMutabilityExclusionFilterValue("imageTagMutabilityExclusionFilterValue")
                 .build()))
         .lifecyclePolicy("lifecyclePolicy")
         .prefix("prefix")
         .repositoryPolicy("repositoryPolicy")
         .resourceTags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: