@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:35.890Z") @Stability(value=Stable) public interface DockerImageAssetLocation extends software.amazon.jsii.JsiiSerializable
This is where the image can be consumed at runtime.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
DockerImageAssetLocation dockerImageAssetLocation = DockerImageAssetLocation.builder()
.imageUri("imageUri")
.repositoryName("repositoryName")
// the properties below are optional
.imageTag("imageTag")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DockerImageAssetLocation.Builder
A builder for
DockerImageAssetLocation |
static class |
DockerImageAssetLocation.Jsii$Proxy
An implementation for
DockerImageAssetLocation |
| Modifier and Type | Method and Description |
|---|---|
static DockerImageAssetLocation.Builder |
builder() |
default String |
getImageTag()
The tag of the image in Amazon ECR.
|
String |
getImageUri()
The URI of the image in Amazon ECR (including a tag).
|
String |
getRepositoryName()
The name of the ECR repository.
|
@Stability(value=Stable) @NotNull String getImageUri()
@Stability(value=Stable) @NotNull String getRepositoryName()
@Stability(value=Stable) @Nullable default String getImageTag()
Default: - the hash of the asset, or the `dockerTagPrefix` concatenated with the asset hash if a `dockerTagPrefix` is specified in the stack synthesizer
@Stability(value=Stable) static DockerImageAssetLocation.Builder builder()
DockerImageAssetLocation.Builder of DockerImageAssetLocationCopyright © 2022. All rights reserved.