Interface WebSocketStageAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, StageAttributes
All Known Implementing Classes:
WebSocketStageAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:20.894Z") @Stability(Stable) public interface WebSocketStageAttributes extends software.amazon.jsii.JsiiSerializable, StageAttributes
The attributes used to import existing WebSocketStage.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigatewayv2.*;
 WebSocketApi webSocketApi;
 WebSocketStageAttributes webSocketStageAttributes = WebSocketStageAttributes.builder()
         .api(webSocketApi)
         .stageName("stageName")
         .build();