Show / Hide Table of Contents

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 CfnImagePipeline.IEcrConfigurationProperty
Syntax (vb)
Public Interface CfnImagePipeline.IEcrConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-ecrconfiguration.html

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.

string[]? ContainerTags { get; }
Property Value

string[]

Remarks

Tags can help you identify and manage your scanned images.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-ecrconfiguration.html#cfn-imagebuilder-imagepipeline-ecrconfiguration-containertags

RepositoryName

The name of the container repository that Amazon Inspector scans to identify findings for your container images.

string? RepositoryName { get; }
Property Value

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-ecrconfiguration.html#cfn-imagebuilder-imagepipeline-ecrconfiguration-repositoryname

Back to top Generated by DocFX