Class DockerImageAssetLocation
The location of the published docker image.
public class DockerImageAssetLocation : IDockerImageAssetLocation
- Inheritance
-
DockerImageAssetLocation
- Implements
- Inherited Members
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
Constructors
DockerImageAssetLocation()
public DockerImageAssetLocation()
Properties
ImageUri
The URI of the image in Amazon ECR.
public string ImageUri { get; set; }
Property Value
RepositoryName
The name of the ECR repository.
public string RepositoryName { get; set; }