interface CfnRegistryScanningConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECR.CfnRegistryScanningConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecr#CfnRegistryScanningConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecr.CfnRegistryScanningConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ecr.CfnRegistryScanningConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecr » CfnRegistryScanningConfigurationMixinProps |
Properties for CfnRegistryScanningConfigurationPropsMixin.
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/cfn-property-mixins';
const cfnRegistryScanningConfigurationMixinProps: ecr.CfnRegistryScanningConfigurationMixinProps = {
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)[]
(optional)
The scanning rules associated with the registry.
scanType?
Type:
string
(optional)
The type of scanning configured for the registry.

.NET
Go
Java
Python
TypeScript