@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:02.078Z") @Stability(value=Experimental) public interface WebSocketIntegrationProps 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.services.apigatewayv2.*;
WebSocketApi webSocketApi;
WebSocketIntegrationProps webSocketIntegrationProps = WebSocketIntegrationProps.builder()
.integrationType(WebSocketIntegrationType.AWS_PROXY)
.integrationUri("integrationUri")
.webSocketApi(webSocketApi)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
WebSocketIntegrationProps.Builder
A builder for
WebSocketIntegrationProps |
static class |
WebSocketIntegrationProps.Jsii$Proxy
An implementation for
WebSocketIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static WebSocketIntegrationProps.Builder |
builder() |
WebSocketIntegrationType |
getIntegrationType()
(experimental) Integration type.
|
String |
getIntegrationUri()
(experimental) Integration URI.
|
IWebSocketApi |
getWebSocketApi()
(experimental) The WebSocket API to which this integration should be bound.
|
@Stability(value=Experimental) @NotNull WebSocketIntegrationType getIntegrationType()
@Stability(value=Experimental) @NotNull String getIntegrationUri()
@Stability(value=Experimental) @NotNull IWebSocketApi getWebSocketApi()
@Stability(value=Experimental) static WebSocketIntegrationProps.Builder builder()
WebSocketIntegrationProps.Builder of WebSocketIntegrationPropsCopyright © 2022. All rights reserved.