TagParameterContainerImageProps

class aws_cdk.aws_ecs.TagParameterContainerImageProps(*, is_image_digest=None)

Bases: object

Properties for TagParameterContainerImage.

Parameters:

is_image_digest (Optional[bool]) – Whether the CloudFormation Parameter holds an image digest (sha256:...) rather than a tag. When true, the separator between the repository URI and the parameter value is @ instead of :, producing ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPO@sha256:.... Use this when your pipeline passes a digest rather than a mutable tag. Default: false

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ecs as ecs

tag_parameter_container_image_props = ecs.TagParameterContainerImageProps(
    is_image_digest=False
)

Attributes

is_image_digest

Whether the CloudFormation Parameter holds an image digest (sha256:...) rather than a tag.

When true, the separator between the repository URI and the parameter value is @ instead of :, producing ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPO@sha256:....

Use this when your pipeline passes a digest rather than a mutable tag.

Default:

false