@aws-cdk_aws-apigatewayv2-alpha.WebSocketIntegrationProps

interface WebSocketIntegrationProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Apigatewayv2.Alpha.WebSocketIntegrationProps
Gogithub.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#WebSocketIntegrationProps
Javasoftware.amazon.awscdk.services.apigatewayv2.alpha.WebSocketIntegrationProps
Pythonaws_cdk.aws_apigatewayv2_alpha.WebSocketIntegrationProps
TypeScript (source)@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

NameTypeDescription
integrationType๐Ÿ”นWebSocketIntegrationTypeIntegration type.
integrationUri๐Ÿ”นstringIntegration URI.
webSocketApi๐Ÿ”นIWebSocketApiThe WebSocket API to which this integration should be bound.

integrationType๐Ÿ”น

Type: WebSocketIntegrationType

Integration type.


integrationUri๐Ÿ”น

Type: string

Integration URI.


webSocketApi๐Ÿ”น

Type: IWebSocketApi

The WebSocket API to which this integration should be bound.