interface DockerImageAssetLocation
Language | Type name |
---|---|
.NET | Amazon.CDK.DockerImageAssetLocation |
Java | software.amazon.awscdk.core.DockerImageAssetLocation |
Python | aws_cdk.core.DockerImageAssetLocation |
TypeScript (source) | @aws-cdk/core » DockerImageAssetLocation |
Obtainable from
Bootstrapless
.addDockerImageAsset()
, Cli
.addDockerImageAsset()
, Default
.addDockerImageAsset()
, Legacy
.addDockerImageAsset()
, Nested
.addDockerImageAsset()
, Stack
.addDockerImageAsset()
, Stack
.addDockerImageAsset()
The location of the published docker image.
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 * as cdk from '@aws-cdk/core';
const dockerImageAssetLocation: cdk.DockerImageAssetLocation = {
imageUri: 'imageUri',
repositoryName: 'repositoryName',
};
Properties
Name | Type | Description |
---|---|---|
image | string | The URI of the image in Amazon ECR. |
repository | string | The name of the ECR repository. |
imageUri
Type:
string
The URI of the image in Amazon ECR.
repositoryName
Type:
string
The name of the ECR repository.