Interface WebSocketStageProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-02T12:05:01.403Z") @Stability(Stable) public interface WebSocketStageProps extends software.amazon.jsii.JsiiSerializable, StageOptions
Properties to initialize an instance of WebSocketStage.

Example:

 import software.amazon.awscdk.services.logs.*;
 HttpApi httpApi;
 WebSocketApi webSocketApi;
 LogGroup logGroup;
 HttpStage.Builder.create(this, "HttpStage")
         .httpApi(httpApi)
         .accessLogSettings(Map.of(
                 "destination", new LogGroupLogDestination(logGroup)))
         .build();
 WebSocketStage.Builder.create(this, "WebSocketStage")
         .webSocketApi(webSocketApi)
         .stageName("dev")
         .accessLogSettings(Map.of(
                 "destination", new LogGroupLogDestination(logGroup)))
         .build();