We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f3337f commit f9fd00cCopy full SHA for f9fd00c
packages/aws-cdk-lib/aws-ecs/lib/container-image.ts
@@ -18,6 +18,8 @@ export abstract class ContainerImage {
18
19
/**
20
* Reference an image in an ECR repository
21
+ *
22
+ * @param tag If you don't specify this parameter, `latest` is used as default.
23
*/
24
public static fromEcrRepository(repository: ecr.IRepository, tag: string = 'latest') {
25
return new EcrImage(repository, tag);
0 commit comments