interface ScanningRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECR.CfnRegistryScanningConfiguration.ScanningRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecr#CfnRegistryScanningConfiguration_ScanningRuleProperty |
Java | software.amazon.awscdk.services.ecr.CfnRegistryScanningConfiguration.ScanningRuleProperty |
Python | aws_cdk.aws_ecr.CfnRegistryScanningConfiguration.ScanningRuleProperty |
TypeScript | aws-cdk-lib » aws_ecr » CfnRegistryScanningConfiguration » ScanningRuleProperty |
The scanning rules associated with the registry.
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 scanningRuleProperty: ecr.CfnRegistryScanningConfiguration.ScanningRuleProperty = {
repositoryFilters: [{
filter: 'filter',
filterType: 'filterType',
}],
scanFrequency: 'scanFrequency',
};
Properties
| Name | Type | Description |
|---|---|---|
| repository | IResolvable | (IResolvable | Repository)[] | The details of a scanning repository filter. |
| scan | string | The frequency that scans are performed at for a private registry. |
repositoryFilters
Type:
IResolvable | (IResolvable | Repository)[]
The details of a scanning repository filter.
For more information on how to use filters, see Using filters in the Amazon Elastic Container Registry User Guide .
scanFrequency
Type:
string
The frequency that scans are performed at for a private registry.
When the ENHANCED scan type is specified, the supported scan frequencies are CONTINUOUS_SCAN and SCAN_ON_PUSH . When the BASIC scan type is specified, the SCAN_ON_PUSH scan frequency is supported. If scan on push is not specified, then the MANUAL scan frequency is set by default.

.NET
Go
Java
Python
TypeScript