@aws-cdk_aws-apigatewayv2-integrations-alpha.HttpUrlIntegrationProps

interface HttpUrlIntegrationProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Apigatewayv2.Integrations.Alpha.HttpUrlIntegrationProps
Gogithub.com/aws/aws-cdk-go/awscdkapigatewayv2integrationsalpha/v2#HttpUrlIntegrationProps
Javasoftware.amazon.awscdk.services.apigatewayv2.integrations.alpha.HttpUrlIntegrationProps
Pythonaws_cdk.aws_apigatewayv2_integrations_alpha.HttpUrlIntegrationProps
TypeScript (source)@aws-cdk/aws-apigatewayv2-integrations-alpha ยป 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_alpha from '@aws-cdk/aws-apigatewayv2-alpha';
import * as apigatewayv2_integrations_alpha from '@aws-cdk/aws-apigatewayv2-integrations-alpha';

declare const parameterMapping: apigatewayv2_alpha.ParameterMapping;
const httpUrlIntegrationProps: apigatewayv2_integrations_alpha.HttpUrlIntegrationProps = {
  method: apigatewayv2_alpha.HttpMethod.ANY,
  parameterMapping: parameterMapping,
};

Properties

NameTypeDescription
method?๐Ÿ”นHttpMethodThe HTTP method that must be used to invoke the underlying HTTP proxy.
parameterMapping?๐Ÿ”นParameterMappingSpecifies how to transform HTTP requests before sending them to the backend.

method?๐Ÿ”น

Type: HttpMethod (optional, default: HttpMethod.ANY)

The HTTP method that must be used to invoke the underlying HTTP proxy.


parameterMapping?๐Ÿ”น

Type: ParameterMapping (optional, default: undefined requests are sent to the backend unmodified)

Specifies how to transform HTTP requests before sending them to the backend.

See also: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-parameter-mapping.html