Module: AWSCDK::Lambda::HttpMethod
- Defined in:
- lambda/http_method.rb
Overview
All http request methods.
Constant Summary collapse
- GET =
Deprecated.Note:
Default:
The GET method requests a representation of the specified resource.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "GET")
- PUT =
Deprecated.Note:
Default:
The PUT method replaces all current representations of the target resource with the request payload.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "PUT")
- HEAD =
Deprecated.Note:
Default:
The HEAD method asks for a response identical to that of a GET request, but without the response body.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "HEAD")
- POST =
Deprecated.Note:
Default:
The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "POST")
- DELETE =
Deprecated.Note:
Default:
The DELETE method deletes the specified resource.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "DELETE")
- PATCH =
Deprecated.Note:
Default:
The PATCH method applies partial modifications to a resource.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "PATCH")
- OPTIONS =
Deprecated.Note:
Default:
The OPTIONS method describes the communication options for the target resource.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "OPTIONS")
- ALL =
Deprecated.Note:
Default:
The wildcard entry to allow all methods.
Jsii::Enum.new("aws-cdk-lib.aws_lambda.HttpMethod", "ALL")