@aws-cdk_aws-apigatewayv2-alpha.WebSocketRouteIntegrationBindOptions

interface WebSocketRouteIntegrationBindOptions ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Apigatewayv2.Alpha.WebSocketRouteIntegrationBindOptions
Gogithub.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#WebSocketRouteIntegrationBindOptions
Javasoftware.amazon.awscdk.services.apigatewayv2.alpha.WebSocketRouteIntegrationBindOptions
Pythonaws_cdk.aws_apigatewayv2_alpha.WebSocketRouteIntegrationBindOptions
TypeScript (source)@aws-cdk/aws-apigatewayv2-alpha ยป WebSocketRouteIntegrationBindOptions

Options to the WebSocketRouteIntegration during its bind operation.

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';
import * as constructs from 'constructs';

declare const construct: constructs.Construct;
declare const webSocketRoute: apigatewayv2_alpha.WebSocketRoute;
const webSocketRouteIntegrationBindOptions: apigatewayv2_alpha.WebSocketRouteIntegrationBindOptions = {
  route: webSocketRoute,
  scope: construct,
};

Properties

NameTypeDescription
route๐Ÿ”นIWebSocketRouteThe route to which this is being bound.
scope๐Ÿ”นConstructThe current scope in which the bind is occurring.

route๐Ÿ”น

Type: IWebSocketRoute

The route to which this is being bound.


scope๐Ÿ”น

Type: Construct

The current scope in which the bind is occurring.

If the WebSocketRouteIntegration being bound creates additional constructs, this will be used as their parent scope.