Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(integ-tests): fix typo in InvocationType enum property name #28162

Merged
merged 2 commits into from
Nov 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand All @@ -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
Expand All @@ -193,7 +193,7 @@ export interface LambdaInvokeFunctionProps {
/**
* The type of invocation to use
*
* @default InvocationType.REQUEST_RESPONE
* @default InvocationType.REQUEST_RESPONSE
*/
readonly invocationType?: InvocationType;

Expand Down
Loading