Show / Hide Table of Contents

Interface IDockerImageAssetLocation

The location of the published docker image.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDockerImageAssetLocation
Syntax (vb)
Public Interface IDockerImageAssetLocation
Remarks

This is where the image can be consumed at runtime.

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;

             var dockerImageAssetLocation = new DockerImageAssetLocation {
                 ImageUri = "imageUri",
                 RepositoryName = "repositoryName",

                 // the properties below are optional
                 ImageTag = "imageTag"
             };

Synopsis

Properties

ImageTag

The tag of the image in Amazon ECR.

ImageUri

The URI of the image in Amazon ECR (including a tag).

RepositoryName

The name of the ECR repository.

Properties

ImageTag

The tag of the image in Amazon ECR.

string? ImageTag { get; }
Property Value

string

Remarks

Default: - the hash of the asset, or the dockerTagPrefix concatenated with the asset hash if a dockerTagPrefix is specified in the stack synthesizer

ImageUri

The URI of the image in Amazon ECR (including a tag).

string ImageUri { get; }
Property Value

string

Remarks

This is where the image can be consumed at runtime.

ExampleMetadata: fixture=_generated

RepositoryName

The name of the ECR repository.

string RepositoryName { get; }
Property Value

string

Remarks

This is where the image can be consumed at runtime.

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX