@aws-cdk_aws-apigatewayv2-alpha.HttpRouteIntegrationBindOptions
interface HttpRouteIntegrationBindOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Apigatewayv2.Alpha.HttpRouteIntegrationBindOptions |
![]() | github.com/aws/aws-cdk-go/awscdkapigatewayv2alpha/v2#HttpRouteIntegrationBindOptions |
![]() | software.amazon.awscdk.services.apigatewayv2.alpha.HttpRouteIntegrationBindOptions |
![]() | aws_cdk.aws_apigatewayv2_alpha.HttpRouteIntegrationBindOptions |
![]() | @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
Name | Type | Description |
---|---|---|
route | IHttp | The route to which this is being bound. |
scope | Construct | The current scope in which the bind is occurring. |
route
Type:
IHttp
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.