Interface WebSocketIntegrationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WebSocketIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-01-03T18:29:21.432Z")
@Stability(Stable)
public interface WebSocketIntegrationProps
extends software.amazon.jsii.JsiiSerializable
The integration properties.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWebSocketIntegrationPropsstatic final classAn implementation forWebSocketIntegrationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Integration type.Integration URI.The WebSocket API to which this integration should be bound.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIntegrationType
Integration type. -
getIntegrationUri
Integration URI. -
getWebSocketApi
The WebSocket API to which this integration should be bound. -
builder
- Returns:
- a
WebSocketIntegrationProps.BuilderofWebSocketIntegrationProps
-