Class CfnContainerRecipe.TargetContainerRepositoryProperty
The container repository where the output container image is stored.
Inherited Members
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
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
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
Remarks
This name is prefixed by the repository location. For example, <repository location url>/repository_name
.
Service
Specifies the service in which this image was registered.
public string? Service { get; set; }