Table of Contents

Interface IDockerImageAssetLocation

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

The location of the published docker image.

public interface IDockerImageAssetLocation

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"
             };

Remarks

This is where the image can be consumed at runtime.

ExampleMetadata: fixture=_generated

Properties

ImageUri

The URI of the image in Amazon ECR.

string ImageUri { get; }

Property Value

string

RepositoryName

The name of the ECR repository.

string RepositoryName { get; }

Property Value

string