Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ export interface FargateTaskDefinitionProps extends CommonTaskDefinitionProps {
*
* 16384 (16 vCPU) - Available memory values: Between 32768 (32 GB) and 122880 (120 GB) in increments of 8192 (8 GB)
*
* Note: For windows platforms, this field is not enforced at runtime. However, it is still required as it is used to determine
* the instance type and size that tasks run on.
*
* @default 256
*/
readonly cpu?: number;
Expand All @@ -59,6 +62,9 @@ export interface FargateTaskDefinitionProps extends CommonTaskDefinitionProps {
*
* Between 32768 (32 GB) and 122880 (120 GB) in increments of 8192 (8 GB) - Available cpu values: 16384 (16 vCPU)
*
* Note: For windows platforms, this field is not enforced at runtime. However, it is still required as it is used to determine
* the instance type and size that tasks run on.
*
* @default 512
*/
readonly memoryLimitMiB?: number;
Expand Down
Loading