Show / Hide Table of Contents

Class DockerImageAssetLocation

The location of the published docker image.

Inheritance
System.Object
DockerImageAssetLocation
Implements
IDockerImageAssetLocation
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class DockerImageAssetLocation : Object, IDockerImageAssetLocation
Syntax (vb)
Public Class DockerImageAssetLocation
    Inherits Object
    Implements 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"
};

Synopsis

Constructors

DockerImageAssetLocation()

Properties

ImageUri

The URI of the image in Amazon ECR.

RepositoryName

The name of the ECR repository.

Constructors

DockerImageAssetLocation()

public DockerImageAssetLocation()

Properties

ImageUri

The URI of the image in Amazon ECR.

public string ImageUri { get; set; }
Property Value

System.String

RepositoryName

The name of the ECR repository.

public string RepositoryName { get; set; }
Property Value

System.String

Implements

IDockerImageAssetLocation
Back to top Generated by DocFX