@aws-cdk_aws-apigatewayv2-alpha.HttpRouteIntegrationBindOptions

interface HttpRouteIntegrationBindOptions ๐Ÿ”น

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

Options to the HttpRouteIntegration 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 httpRoute: apigatewayv2_alpha.HttpRoute;
const httpRouteIntegrationBindOptions: apigatewayv2_alpha.HttpRouteIntegrationBindOptions = {
  route: httpRoute,
  scope: construct,
};

Properties

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

route๐Ÿ”น

Type: IHttpRoute

The route to which this is being bound.


scope๐Ÿ”น

Type: Construct

The current scope in which the bind is occurring.

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