Interface CfnRegistryScanningConfiguration.RepositoryFilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRegistryScanningConfiguration.RepositoryFilterProperty.Jsii$Proxy
- Enclosing class:
CfnRegistryScanningConfiguration
@Stability(Stable)
public static interface CfnRegistryScanningConfiguration.RepositoryFilterProperty
extends software.amazon.jsii.JsiiSerializable
The filter settings used with image replication.
Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRegistryScanningConfiguration.RepositoryFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The filter to use when scanning.The type associated with the filter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilter
The filter to use when scanning.- See Also:
-
getFilterType
The type associated with the filter.- See Also:
-
builder
@Stability(Stable) static CfnRegistryScanningConfiguration.RepositoryFilterProperty.Builder builder()
-