Skip to content

Commit 9460749

Browse files
authored
Merge branch 'main' into update-codemod
2 parents ff0e00e + f4dc7e2 commit 9460749

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/aws-cdk-lib/aws-ecs/lib/fargate/fargate-task-definition.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ export interface FargateTaskDefinitionProps extends CommonTaskDefinitionProps {
3737
*
3838
* 16384 (16 vCPU) - Available memory values: Between 32768 (32 GB) and 122880 (120 GB) in increments of 8192 (8 GB)
3939
*
40+
* Note: For windows platforms, this field is not enforced at runtime. However, it is still required as it is used to determine
41+
* the instance type and size that tasks run on.
42+
*
4043
* @default 256
4144
*/
4245
readonly cpu?: number;
@@ -59,6 +62,9 @@ export interface FargateTaskDefinitionProps extends CommonTaskDefinitionProps {
5962
*
6063
* Between 32768 (32 GB) and 122880 (120 GB) in increments of 8192 (8 GB) - Available cpu values: 16384 (16 vCPU)
6164
*
65+
* Note: For windows platforms, this field is not enforced at runtime. However, it is still required as it is used to determine
66+
* the instance type and size that tasks run on.
67+
*
6268
* @default 512
6369
*/
6470
readonly memoryLimitMiB?: number;

0 commit comments

Comments
 (0)