interface RepositoryFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.CfnSigningConfiguration.RepositoryFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnSigningConfiguration_RepositoryFilterProperty |
Java | software.amazon.awscdk.services.ecr.CfnSigningConfiguration.RepositoryFilterProperty |
Python | aws_cdk.aws_ecr.CfnSigningConfiguration.RepositoryFilterProperty |
TypeScript | aws-cdk-lib » aws_ecr » CfnSigningConfiguration » RepositoryFilterProperty |
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 { aws_ecr as ecr } from 'aws-cdk-lib';
const repositoryFilterProperty: ecr.CfnSigningConfiguration.RepositoryFilterProperty = {
filter: 'filter',
filterType: 'filterType',
};
Properties
| Name | Type | Description |
|---|---|---|
| filter | string | The filter value used to match repository names. |
| filter | string | The type of filter to apply. |
filter
Type:
string
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
filterType
Type:
string
The type of filter to apply.
Currently, only WILDCARD_MATCH is supported, which uses wildcard patterns to match repository names.

.NET
Go
Java
Python
TypeScript