interface TagParameterContainerImageProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.TagParameterContainerImageProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#TagParameterContainerImageProps |
Java | software.amazon.awscdk.services.ecs.TagParameterContainerImageProps |
Python | aws_cdk.aws_ecs.TagParameterContainerImageProps |
TypeScript (source) | aws-cdk-lib » aws_ecs » TagParameterContainerImageProps |
Properties for TagParameterContainerImage.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const tagParameterContainerImageProps: ecs.TagParameterContainerImageProps = {
isImageDigest: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | Whether the CloudFormation Parameter holds an image digest (sha256:...) rather than a tag. |
isImageDigest?
Type:
boolean
(optional, default: false)
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.

.NET
Go
Java
Python
TypeScript (