Interface WebSocketStageAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,StageAttributes
- All Known Implementing Classes:
WebSocketStageAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.360Z")
@Stability(Experimental)
public interface WebSocketStageAttributes
extends software.amazon.jsii.JsiiSerializable, StageAttributes
(experimental) 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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forWebSocketStageAttributes
static final class
An implementation forWebSocketStageAttributes
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.apigatewayv2.StageAttributes
getStageName
-
Method Details
-
getApi
(experimental) The API to which this stage is associated. -
builder
- Returns:
- a
WebSocketStageAttributes.Builder
ofWebSocketStageAttributes
-