interface HttpUrlIntegrationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APIGatewayv2.Integrations.HttpUrlIntegrationProps |
Java | software.amazon.awscdk.services.apigatewayv2.integrations.HttpUrlIntegrationProps |
Python | aws_cdk.aws_apigatewayv2_integrations.HttpUrlIntegrationProps |
TypeScript (source) | @aws-cdk/aws-apigatewayv2-integrations » HttpUrlIntegrationProps |
Properties to initialize a new HttpProxyIntegration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigatewayv2 from '@aws-cdk/aws-apigatewayv2';
import * as apigatewayv2_integrations from '@aws-cdk/aws-apigatewayv2-integrations';
declare const parameterMapping: apigatewayv2.ParameterMapping;
const httpUrlIntegrationProps: apigatewayv2_integrations.HttpUrlIntegrationProps = {
method: apigatewayv2.HttpMethod.ANY,
parameterMapping: parameterMapping,
};
Properties
| Name | Type | Description |
|---|---|---|
| method? | Http | The HTTP method that must be used to invoke the underlying HTTP proxy. |
| parameter | Parameter | Specifies how to transform HTTP requests before sending them to the backend. |
method?
Type:
Http
(optional, default: HttpMethod.ANY)
The HTTP method that must be used to invoke the underlying HTTP proxy.
parameterMapping?
Type:
Parameter
(optional, default: undefined requests are sent to the backend unmodified)
Specifies how to transform HTTP requests before sending them to the backend.

.NET
Java
Python
TypeScript (