interface RepositoryFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECR.Mixins.CfnRegistryScanningConfigurationPropsMixin.RepositoryFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecr/mixins#CfnRegistryScanningConfigurationPropsMixin_RepositoryFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecr.mixins.CfnRegistryScanningConfigurationPropsMixin.RepositoryFilterProperty |
Python | aws_cdk.mixins_preview.aws_ecr.mixins.CfnRegistryScanningConfigurationPropsMixin.RepositoryFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecr » mixins » CfnRegistryScanningConfigurationPropsMixin » RepositoryFilterProperty |
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 { mixins as ecr_mixins } from '@aws-cdk/mixins-preview/aws-ecr';
const repositoryFilterProperty: ecr_mixins.CfnRegistryScanningConfigurationPropsMixin.RepositoryFilterProperty = {
filter: 'filter',
filterType: 'filterType',
};
Properties
| Name | Type | Description |
|---|---|---|
| filter? | string | The filter to use when scanning. |
| filter | string | The type associated with the filter. |
filter?
Type:
string
(optional)
The filter to use when scanning.
filterType?
Type:
string
(optional)
The type associated with the filter.

.NET
Go
Java
Python
TypeScript