websocket in cdk typescript

0

Hey guys hope ya'll doing well i wanted help related to aws websocket if any of yall know how i can use it in cdk hit me up.

1 Antwort
1

i can give you several lambda functions the Lambda function for handling new connections

const wsConnectLambda = new NodejsFunction(this, 'ws-connect-lambda', {
   entry: join(__dirname, '../src/connect/index.ts'),
   handler: 'handler',
   functionName: 'connect-lambda',
   runtime: Runtime.NODEJS_18_X,
});

Each Lambda function needs a handler.

export const handler = async (event: APIGatewayProxyEvent) => {
  const connectionId = event.requestContext.connectionId;
  console.log('connection created:', connectionId);
  return { statusCode: 200, body: 'Connected.' };
};

Use the WebSocketApi CDK construct to create the WebSocket API and integrate it with the Lambda functions

const webSocketApi = new apigw2.WebSocketApi(this, 'my-first-websocket-api', {
   connectRouteOptions: {
     integration: new WebSocketLambdaIntegration(
       'ws-connect-integration',
       wsConnectLambda
     ),
   },
   disconnectRouteOptions: {
     integration: new WebSocketLambdaIntegration(
       'ws-disconnect-integration',
       wsDisconnectLambda
     ),
   },
});

const apiStage = new apigw2.WebSocketStage(this, 'dev', {
   webSocketApi,
   stageName: 'dev',
   autoDeploy: true,
});

for more details you can refer the following application

https://github.com/aws-samples/websocket-chat-application

profile picture
EXPERTE
beantwortet vor 4 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen