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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSigningConfiguration.RepositoryFilterPropertystatic final classAn implementation forCfnSigningConfiguration.RepositoryFilterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The filter value used to match repository names.The type of filter to apply.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilter
The filter value used to match repository names.When using
WILDCARD_MATCH, the*character matches any sequence of characters.Examples:
myapp/*- Matches all repositories starting withmyapp/* /production- Matches all repositories ending with/production*prod*- Matches all repositories containingprod
- See Also:
-
getFilterType
The type of filter to apply.Currently, only
WILDCARD_MATCHis supported, which uses wildcard patterns to match repository names.- See Also:
-
builder
-