From 40dbdd2ddd47351b0f22b910c256fe1670f9cc29 Mon Sep 17 00:00:00 2001 From: Michelle Wang Date: Thu, 19 Sep 2024 14:57:02 -0700 Subject: [PATCH] update comments --- packages/aws-cdk-lib/aws-ec2/lib/instance.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-ec2/lib/instance.ts b/packages/aws-cdk-lib/aws-ec2/lib/instance.ts index 1b4d7051936e8..2796d3e469169 100644 --- a/packages/aws-cdk-lib/aws-ec2/lib/instance.ts +++ b/packages/aws-cdk-lib/aws-ec2/lib/instance.ts @@ -709,9 +709,6 @@ export class Instance extends Resource implements IInstance { /** * Apply CloudFormation update policies for the instance. - * - * If both initOptions.timeout and resourceSignalTimeout are specified, - * timeout is summed together, else timeout is set to the value of the specified field. */ private applyUpdatePolicies(props: InstanceProps) { if (props.resourceSignalTimeout !== undefined) { @@ -760,6 +757,7 @@ export interface ApplyCloudFormationInitOptions { * config changes nothing will happen to the running instance. If a * config update introduces errors, you will not notice until after the * CloudFormation deployment successfully finishes and the next instance + * fails to launch. * * @default true */