Interface CfnSigningConfiguration.RepositoryFilterProperty

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

@Stability(Stable) public static interface CfnSigningConfiguration.RepositoryFilterProperty extends software.amazon.jsii.JsiiSerializable
A repository filter used to determine which repositories have their images automatically signed on push.

Each filter consists of a filter type and filter value.

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.*;
 RepositoryFilterProperty repositoryFilterProperty = RepositoryFilterProperty.builder()
         .filter("filter")
         .filterType("filterType")
         .build();
 

See Also: