Show / Hide Table of Contents

Class CfnContainerRecipe.TargetContainerRepositoryProperty

The container repository where the output container image is stored.

Inheritance
object
CfnContainerRecipe.TargetContainerRepositoryProperty
Implements
CfnContainerRecipe.ITargetContainerRepositoryProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ImageBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContainerRecipe.TargetContainerRepositoryProperty : CfnContainerRecipe.ITargetContainerRepositoryProperty
Syntax (vb)
Public Class CfnContainerRecipe.TargetContainerRepositoryProperty Implements CfnContainerRecipe.ITargetContainerRepositoryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-targetcontainerrepository.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 targetContainerRepositoryProperty = new TargetContainerRepositoryProperty {
                 RepositoryName = "repositoryName",
                 Service = "service"
             };

Synopsis

Constructors

TargetContainerRepositoryProperty()

The container repository where the output container image is stored.

Properties

RepositoryName

The name of the container repository where the output container image is stored.

Service

Specifies the service in which this image was registered.

Constructors

TargetContainerRepositoryProperty()

The container repository where the output container image is stored.

public TargetContainerRepositoryProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-targetcontainerrepository.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 targetContainerRepositoryProperty = new TargetContainerRepositoryProperty {
                 RepositoryName = "repositoryName",
                 Service = "service"
             };

Properties

RepositoryName

The name of the container repository where the output container image is stored.

public string? RepositoryName { get; set; }
Property Value

string

Remarks

This name is prefixed by the repository location. For example, <repository location url>/repository_name .

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

Service

Specifies the service in which this image was registered.

public string? Service { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-targetcontainerrepository.html#cfn-imagebuilder-containerrecipe-targetcontainerrepository-service

Implements

CfnContainerRecipe.ITargetContainerRepositoryProperty
Back to top Generated by DocFX