interface EcrConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnImagePipeline.EcrConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnImagePipeline_EcrConfigurationProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.EcrConfigurationProperty |
Python | aws_cdk.aws_imagebuilder.CfnImagePipeline.EcrConfigurationProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnImagePipeline » EcrConfigurationProperty |
Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const ecrConfigurationProperty: imagebuilder.CfnImagePipeline.EcrConfigurationProperty = {
containerTags: ['containerTags'],
repositoryName: 'repositoryName',
};
Properties
Name | Type | Description |
---|---|---|
container | string[] | Tags for Image Builder to apply to the output container image that Amazon Inspector scans. |
repository | string | The name of the container repository that Amazon Inspector scans to identify findings for your container images. |
containerTags?
Type:
string[]
(optional)
Tags for Image Builder to apply to the output container image that Amazon Inspector scans.
Tags can help you identify and manage your scanned images.
repositoryName?
Type:
string
(optional)
The name of the container repository that Amazon Inspector scans to identify findings for your container images.
The name includes the path for the repository location. If you don’t provide this information, Image Builder creates a repository in your account named image-builder-image-scanning-repository
for vulnerability scans of your output container images.