@aws-cdk_aws-apigatewayv2-alpha.WebSocketIntegrationProps
interface WebSocketIntegrationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Apigatewayv2.Alpha.WebSocketIntegrationProps |
![]() | github.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#WebSocketIntegrationProps |
![]() | software.amazon.awscdk.services.apigatewayv2.alpha.WebSocketIntegrationProps |
![]() | aws_cdk.aws_apigatewayv2_alpha.WebSocketIntegrationProps |
![]() | @aws-cdk/aws-apigatewayv2-alpha ยป WebSocketIntegrationProps |
The integration properties.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigatewayv2_alpha from '@aws-cdk/aws-apigatewayv2-alpha';
declare const webSocketApi: apigatewayv2_alpha.WebSocketApi;
const webSocketIntegrationProps: apigatewayv2_alpha.WebSocketIntegrationProps = {
integrationType: apigatewayv2_alpha.WebSocketIntegrationType.AWS_PROXY,
integrationUri: 'integrationUri',
webSocketApi: webSocketApi,
};
Properties
Name | Type | Description |
---|---|---|
integration | Web | Integration type. |
integration | string | Integration URI. |
web | IWeb | The WebSocket API to which this integration should be bound. |
integrationType
Type:
Web
Integration type.
integrationUri
Type:
string
Integration URI.
webSocketApi
Type:
IWeb
The WebSocket API to which this integration should be bound.