Interface CfnSigningConfiguration.RuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSigningConfiguration.RuleProperty.Jsii$Proxy
Enclosing class:
CfnSigningConfiguration

@Stability(Stable) public static interface CfnSigningConfiguration.RuleProperty extends software.amazon.jsii.JsiiSerializable
A signing rule that specifies a signing profile and optional repository filters.

When an image is pushed to a matching repository, a signing job is created using the specified profile.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecr.*;
 RuleProperty ruleProperty = RuleProperty.builder()
         .signingProfileArn("signingProfileArn")
         // the properties below are optional
         .repositoryFilters(List.of(RepositoryFilterProperty.builder()
                 .filter("filter")
                 .filterType("filterType")
                 .build()))
         .build();
 

See Also: