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.
virtual string ImageTag { get; }
Property Value
System.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
System.String
RepositoryName
The name of the ECR repository.
string RepositoryName { get; }
Property Value
System.String