From ddbf57bd3bf4f8937a63c94d7188792ed37814b3 Mon Sep 17 00:00:00 2001 From: Jimmy Gaussen Date: Sat, 6 Jul 2024 16:30:56 +0200 Subject: [PATCH] docs: fix rosetta example --- .../aws-apigatewayv2/lib/websocket/integration-response.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-apigatewayv2/lib/websocket/integration-response.ts b/packages/aws-cdk-lib/aws-apigatewayv2/lib/websocket/integration-response.ts index 6405c991709a3..dbda6a900ccef 100644 --- a/packages/aws-cdk-lib/aws-apigatewayv2/lib/websocket/integration-response.ts +++ b/packages/aws-cdk-lib/aws-apigatewayv2/lib/websocket/integration-response.ts @@ -82,9 +82,9 @@ export class WebSocketIntegrationResponseKey { * @example * // Match 200 OK, 201 Created, and all 4xx Client Error status codes * apigwv2.WebSocketIntegrationResponseKey.fromKeys( - * WebSocketIntegrationResponseKey.ok, - * WebSocketIntegrationResponseKey.fromStatusCode(201), - * WebSocketIntegrationResponseKey.clientError + * apigwv2.WebSocketIntegrationResponseKey.ok, + * apigwv2.WebSocketIntegrationResponseKey.fromStatusCode(201), + * apigwv2.WebSocketIntegrationResponseKey.clientError * ) */ public static fromKeys(...keys: WebSocketIntegrationResponseKey[]): WebSocketIntegrationResponseKey {