Skip to content

Commit 48c275c

Browse files
authored
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*
1 parent 1624ab6 commit 48c275c

File tree

1 file changed

+3
-3
lines changed
  • packages/@aws-cdk/integ-tests-alpha/lib/assertions

1 file changed

+3
-3
lines changed

packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export enum LogType {
156156
}
157157

158158
/**
159-
* The type of invocation. Default is REQUEST_RESPONE
159+
* The type of invocation. Default is REQUEST_RESPONSE
160160
*/
161161
export enum InvocationType {
162162
/**
@@ -172,7 +172,7 @@ export enum InvocationType {
172172
* Keep the connection open until the function returns a response or times out.
173173
* The API response includes the function response and additional data.
174174
*/
175-
REQUEST_RESPONE = 'RequestResponse',
175+
REQUEST_RESPONSE = 'RequestResponse',
176176

177177
/**
178178
* Validate parameter values and verify that the user
@@ -193,7 +193,7 @@ export interface LambdaInvokeFunctionProps {
193193
/**
194194
* The type of invocation to use
195195
*
196-
* @default InvocationType.REQUEST_RESPONE
196+
* @default InvocationType.REQUEST_RESPONSE
197197
*/
198198
readonly invocationType?: InvocationType;
199199

0 commit comments

Comments
 (0)