Interface CfnImagePipeline.IEcrConfigurationProperty
Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IEcrConfigurationProperty
Syntax (vb)
Public Interface IEcrConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ImageBuilder;
var ecrConfigurationProperty = new EcrConfigurationProperty {
ContainerTags = new [] { "containerTags" },
RepositoryName = "repositoryName"
};
Synopsis
Properties
ContainerTags | Tags for Image Builder to apply to the output container image that Amazon Inspector scans. |
RepositoryName | The name of the container repository that Amazon Inspector scans to identify findings for your container images. |
Properties
ContainerTags
Tags for Image Builder to apply to the output container image that Amazon Inspector scans.
virtual string[] ContainerTags { get; }
Property Value
System.String[]
Remarks
Tags can help you identify and manage your scanned images.
RepositoryName
The name of the container repository that Amazon Inspector scans to identify findings for your container images.
virtual string RepositoryName { get; }
Property Value
System.String
Remarks
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.