Module: AWSCDK::APIGateway::IntegrationType

Defined in:
api_gateway/integration_type.rb

Constant Summary collapse

AWS_PROXY =
Deprecated.
Note:

Default:

For integrating the API method request with the Lambda function-invoking action with the client request passed through as-is.

This integration is also referred to as the Lambda proxy integration

Jsii::Enum.new("aws-cdk-lib.aws_apigateway.IntegrationType", "AWS_PROXY")
HTTP =
Deprecated.
Note:

Default:

For integrating the API method request with an HTTP endpoint, including a private HTTP endpoint within a VPC.

This integration is also referred to as the HTTP custom integration.

Jsii::Enum.new("aws-cdk-lib.aws_apigateway.IntegrationType", "HTTP")
HTTP_PROXY =
Deprecated.
Note:

Default:

For integrating the API method request with an HTTP endpoint, including a private HTTP endpoint within a VPC, with the client request passed through as-is.

This is also referred to as the HTTP proxy integration

Jsii::Enum.new("aws-cdk-lib.aws_apigateway.IntegrationType", "HTTP_PROXY")
MOCK =
Deprecated.
Note:

Default:

For integrating the API method request with API Gateway as a "loop-back" endpoint without invoking any backend.

Jsii::Enum.new("aws-cdk-lib.aws_apigateway.IntegrationType", "MOCK")