You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Rename feature flag from 'defaultMemoryLimit' to 'default512MemoryLimit' for clarity
- Simplify README documentation to remove feature flag mention since it defaults to true
- Simplify JSDoc comment to show '@default 512' without feature flag details
- Update all references to use the new feature flag name
Copy file name to clipboardExpand all lines: packages/aws-cdk-lib/aws-s3-deployment/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -362,7 +362,7 @@ new s3deploy.BucketDeployment(this, 'DeployWithSignedPayloads', {
362
362
363
363
## Size Limits
364
364
365
-
The default memory limit for the deployment resource is 512MiB when the feature flag `@aws-cdk/aws-s3-deployment:defaultMemoryLimit` is enabled, otherwise 128MiB. If you need to
365
+
The default memory limit for the deployment resource is 512MiB. If you need to
366
366
copy larger files, you can use the `memoryLimit` configuration to increase the
Copy file name to clipboardExpand all lines: packages/aws-cdk-lib/cx-api/FEATURE_FLAGS.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ Flags come in three types:
107
107
|[@aws-cdk/core:explicitStackTags](#aws-cdkcoreexplicitstacktags)| When enabled, stack tags need to be assigned explicitly on a Stack. | 2.205.0 | new default |
108
108
|[@aws-cdk/aws-signer:signingProfileNamePassedToCfn](#aws-cdkaws-signersigningprofilenamepassedtocfn)| Pass signingProfileName to CfnSigningProfile | 2.212.0 | fix |
109
109
|[@aws-cdk/aws-ecs-patterns:secGroupsDisablesImplicitOpenListener](#aws-cdkaws-ecs-patternssecgroupsdisablesimplicitopenlistener)| Disable implicit openListener when custom security groups are provided | 2.214.0 | new default |
110
-
|[@aws-cdk/aws-s3-deployment:defaultMemoryLimit](#aws-cdkaws-s3-deploymentdefaultmemorylimit)| Use 512MB memory for BucketDeployment Lambda function instead of 128MB | V2NEXT | new default |
110
+
|[@aws-cdk/aws-s3-deployment:default512MemoryLimit](#aws-cdkaws-s3-deploymentdefault512memorylimit)| Use 512MB memory for BucketDeployment Lambda function instead of 128MB | V2NEXT | new default |
111
111
112
112
<!-- END table -->
113
113
@@ -198,7 +198,7 @@ The following json shows the current recommended set of flags, as `cdk init` wou
0 commit comments