Show / Hide Table of Contents

Class CfnImagePropsMixin.EcrConfigurationProperty

Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.

Inheritance
object
CfnImagePropsMixin.EcrConfigurationProperty
Implements
CfnImagePropsMixin.IEcrConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnImagePropsMixin.EcrConfigurationProperty : CfnImagePropsMixin.IEcrConfigurationProperty
Syntax (vb)
Public Class CfnImagePropsMixin.EcrConfigurationProperty Implements CfnImagePropsMixin.IEcrConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-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.CfnPropertyMixins.AWS.ImageBuilder;

             var ecrConfigurationProperty = new EcrConfigurationProperty {
                 ContainerTags = new [] { "containerTags" },
                 RepositoryName = "repositoryName"
             };

Synopsis

Constructors

EcrConfigurationProperty()

Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.

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.

Constructors

EcrConfigurationProperty()

Settings that Image Builder uses to configure the ECR repository and the output container images that Amazon Inspector scans.

public EcrConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-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.CfnPropertyMixins.AWS.ImageBuilder;

             var ecrConfigurationProperty = new EcrConfigurationProperty {
                 ContainerTags = new [] { "containerTags" },
                 RepositoryName = "repositoryName"
             };

Properties

ContainerTags

Tags for Image Builder to apply to the output container image that Amazon Inspector scans.

public string[]? ContainerTags { get; set; }
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-image-ecrconfiguration.html#cfn-imagebuilder-image-ecrconfiguration-containertags

RepositoryName

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

public string? RepositoryName { get; set; }
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-image-ecrconfiguration.html#cfn-imagebuilder-image-ecrconfiguration-repositoryname

Implements

CfnImagePropsMixin.IEcrConfigurationProperty
Back to top Generated by DocFX