From b655b08b0e71d4d345b0ae5a1ca137c7c84c8473 Mon Sep 17 00:00:00 2001 From: mikewrighton Date: Mon, 16 Oct 2023 15:57:27 -0400 Subject: [PATCH] fix(custom-resources): custom resource provider can't exceed 1 hour (#27533) This change fixes the documentation for `ProviderProps.totalTimeout` to specify the correct value of 1 hour. Closes #24974. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- .../custom-resources/lib/provider-framework/provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/custom-resources/lib/provider-framework/provider.ts b/packages/aws-cdk-lib/custom-resources/lib/provider-framework/provider.ts index a0690b3d5055e..394570aeefcc2 100644 --- a/packages/aws-cdk-lib/custom-resources/lib/provider-framework/provider.ts +++ b/packages/aws-cdk-lib/custom-resources/lib/provider-framework/provider.ts @@ -59,7 +59,7 @@ export interface ProviderProps { /** * Total timeout for the entire operation. * - * The maximum timeout is 2 hours (yes, it can exceed the AWS Lambda 15 minutes) + * The maximum timeout is 1 hour (yes, it can exceed the AWS Lambda 15 minutes) * * @default Duration.minutes(30) */