Interface WebSocketStageProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, StageOptions
All Known Implementing Classes:
WebSocketStageProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-27T16:50:52.526Z") @Stability(Stable) public interface WebSocketStageProps extends software.amazon.jsii.JsiiSerializable, StageOptions
Properties to initialize an instance of WebSocketStage.

Example:

 import software.amazon.awscdk.aws_apigatewayv2_integrations.WebSocketLambdaIntegration;
 Function messageHandler;
 WebSocketApi webSocketApi = new WebSocketApi(this, "mywsapi");
 WebSocketStage.Builder.create(this, "mystage")
         .webSocketApi(webSocketApi)
         .stageName("dev")
         .autoDeploy(true)
         .build();
 webSocketApi.addRoute("sendMessage", WebSocketRouteOptions.builder()
         .integration(new WebSocketLambdaIntegration("SendMessageIntegration", messageHandler))
         .build());