@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.084Z") @Stability(value=Experimental) public interface WebSocketRouteIntegrationBindOptions extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.apigatewayv2.*;
Construct construct;
WebSocketRoute webSocketRoute;
WebSocketRouteIntegrationBindOptions webSocketRouteIntegrationBindOptions = WebSocketRouteIntegrationBindOptions.builder()
.route(webSocketRoute)
.scope(construct)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
WebSocketRouteIntegrationBindOptions.Builder
A builder for
WebSocketRouteIntegrationBindOptions |
static class |
WebSocketRouteIntegrationBindOptions.Jsii$Proxy
An implementation for
WebSocketRouteIntegrationBindOptions |
| Modifier and Type | Method and Description |
|---|---|
static WebSocketRouteIntegrationBindOptions.Builder |
builder() |
IWebSocketRoute |
getRoute()
(experimental) The route to which this is being bound.
|
Construct |
getScope()
(experimental) The current scope in which the bind is occurring.
|
@Stability(value=Experimental) @NotNull IWebSocketRoute getRoute()
@Stability(value=Experimental) @NotNull Construct getScope()
If the WebSocketRouteIntegration being bound creates additional constructs,
this will be used as their parent scope.
@Stability(value=Experimental) static WebSocketRouteIntegrationBindOptions.Builder builder()
Copyright © 2022. All rights reserved.