interface ImageScanningConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnImagePipeline.ImageScanningConfigurationProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.ImageScanningConfigurationProperty |
Python | aws_cdk.aws_imagebuilder.CfnImagePipeline.ImageScanningConfigurationProperty |
TypeScript | @aws-cdk/aws-imagebuilder » CfnImagePipeline » ImageScanningConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as imagebuilder from '@aws-cdk/aws-imagebuilder';
const imageScanningConfigurationProperty: imagebuilder.CfnImagePipeline.ImageScanningConfigurationProperty = {
ecrConfiguration: {
containerTags: ['containerTags'],
repositoryName: 'repositoryName',
},
imageScanningEnabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| ecr | IResolvable | Ecr | CfnImagePipeline.ImageScanningConfigurationProperty.EcrConfiguration. |
| image | boolean | IResolvable | CfnImagePipeline.ImageScanningConfigurationProperty.ImageScanningEnabled. |
ecrConfiguration?
Type:
IResolvable | Ecr
(optional)
CfnImagePipeline.ImageScanningConfigurationProperty.EcrConfiguration.
imageScanningEnabled?
Type:
boolean | IResolvable
(optional)
CfnImagePipeline.ImageScanningConfigurationProperty.ImageScanningEnabled.

.NET
Java
Python
TypeScript