interface BatchHttpRouteOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Apigatewayv2.BatchHttpRouteOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#BatchHttpRouteOptions |
![]() | software.amazon.awscdk.services.apigatewayv2.BatchHttpRouteOptions |
![]() | aws_cdk.aws_apigatewayv2.BatchHttpRouteOptions |
![]() | aws-cdk-lib » aws_apigatewayv2 » BatchHttpRouteOptions |
Options used when configuring multiple routes, at once.
The options here are the ones that would be configured for all being set up.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
declare const httpRouteIntegration: apigatewayv2.HttpRouteIntegration;
const batchHttpRouteOptions: apigatewayv2.BatchHttpRouteOptions = {
integration: httpRouteIntegration,
};
Properties
Name | Type | Description |
---|---|---|
integration | Http | The integration to be configured on this route. |
integration
Type:
Http
The integration to be configured on this route.