DockerImageAssetLocation
The location of the published docker image.
This is where the image can be consumed at runtime.
Initializer
import ros_cdk_core
ros_cdk_core.DockerImageAssetLocation(
image_uri: str,
repository_name: str,
image_tag: str = None
)
Properties
Name | Type | Description |
---|---|---|
image_uri |
str |
The URI of the image in Aliyun ACR (including a tag). |
repository_name |
str |
The name of the ACR repository. |
image_tag |
str |
The tag of the image in Aliyun ACR. |
image_uri
Required
image_uri: str
- Type: str
The URI of the image in Aliyun ACR (including a tag).
repository_name
Required
repository_name: str
- Type: str
The name of the ACR repository.
image_tag
Optional
image_tag: str
- Type: str
- Default: the hash of the asset, or the
dockerTagPrefix
concatenated with the asset hash if adockerTagPrefix
is specified in the stack synthesizer
The tag of the image in Aliyun ACR.