interface RepositoryFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins.CfnSigningConfigurationPropsMixin.RepositoryFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/mixins#CfnSigningConfigurationPropsMixin_RepositoryFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecr.mixins.CfnSigningConfigurationPropsMixin.RepositoryFilterProperty |
Python | aws_cdk.mixins_preview.aws_ecr.mixins.CfnSigningConfigurationPropsMixin.RepositoryFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecr » mixins » CfnSigningConfigurationPropsMixin » 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 { mixins as ecr_mixins } from '@aws-cdk/mixins-preview/aws-ecr';
const repositoryFilterProperty: ecr_mixins.CfnSigningConfigurationPropsMixin.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
(optional)
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
(optional)
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