From 48c275c57c945c7a3ce318522add83a8630e53b7 Mon Sep 17 00:00:00 2001 From: sakurai-ryo <58683719+sakurai-ryo@users.noreply.github.com> Date: Wed, 29 Nov 2023 01:37:25 +0900 Subject: [PATCH] fix(integ-tests): fix typo in InvocationType enum property name (#28162) **This PR includes a breaking change to the `integ-tests-alpha` module.** ### Description This PR proposes a breaking change by fixing typo in the `InvocationType` enum. The property name `REQUEST_RESPONE` is corrected to `REQUEST_RESPONSE`. BREAKING CHANGE: Fix typo in the `InvocationType` property from `REQUEST_RESPONE` to `REQUEST_RESPONSE` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts b/packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts index 33f0e16d9343a..931a91a6f1347 100644 --- a/packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts +++ b/packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts @@ -156,7 +156,7 @@ export enum LogType { } /** - * The type of invocation. Default is REQUEST_RESPONE + * The type of invocation. Default is REQUEST_RESPONSE */ export enum InvocationType { /** @@ -172,7 +172,7 @@ export enum InvocationType { * Keep the connection open until the function returns a response or times out. * The API response includes the function response and additional data. */ - REQUEST_RESPONE = 'RequestResponse', + REQUEST_RESPONSE = 'RequestResponse', /** * Validate parameter values and verify that the user @@ -193,7 +193,7 @@ export interface LambdaInvokeFunctionProps { /** * The type of invocation to use * - * @default InvocationType.REQUEST_RESPONE + * @default InvocationType.REQUEST_RESPONSE */ readonly invocationType?: InvocationType;