TagParameterContainerImageProps
- class aws_cdk.aws_ecs.TagParameterContainerImageProps(*, is_image_digest=None)
Bases:
objectProperties for
TagParameterContainerImage.- Parameters:
is_image_digest (
Optional[bool]) – Whether the CloudFormation Parameter holds an image digest (sha256:...) rather than a tag. Whentrue, the separator between the repository URI and the parameter value is@instead of:, producingACCOUNT.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:, producingACCOUNT.dkr.ecr.REGION.amazonaws.com/REPO@sha256:....Use this when your pipeline passes a digest rather than a mutable tag.
- Default:
false