interface CfnRegistryScanningConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.CfnRegistryScanningConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnRegistryScanningConfigurationProps |
Java | software.amazon.awscdk.services.ecr.CfnRegistryScanningConfigurationProps |
Python | aws_cdk.aws_ecr.CfnRegistryScanningConfigurationProps |
TypeScript | aws-cdk-lib » aws_ecr » CfnRegistryScanningConfigurationProps |
Properties for defining a CfnRegistryScanningConfiguration.
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 cfnRegistryScanningConfigurationProps: ecr.CfnRegistryScanningConfigurationProps = {
rules: [{
repositoryFilters: [{
filter: 'filter',
filterType: 'filterType',
}],
scanFrequency: 'scanFrequency',
}],
scanType: 'scanType',
};
Properties
| Name | Type | Description |
|---|---|---|
| rules | IResolvable | (IResolvable | Scanning)[] | The scanning rules associated with the registry. |
| scan | string | The type of scanning configured for the registry. |
rules
Type:
IResolvable | (IResolvable | Scanning)[]
The scanning rules associated with the registry.
scanType
Type:
string
The type of scanning configured for the registry.

.NET
Go
Java
Python
TypeScript