HttpMethod๏ƒ

class aws_cdk.aws_lambda.HttpMethod(*values)๏ƒ

Bases: Enum

All http request methods.

Attributes

ALL๏ƒ

The wildcard entry to allow all methods.

DELETE๏ƒ

The DELETE method deletes the specified resource.

GET๏ƒ

The GET method requests a representation of the specified resource.

HEAD๏ƒ

The HEAD method asks for a response identical to that of a GET request, but without the response body.

OPTIONS๏ƒ

The OPTIONS method describes the communication options for the target resource.

PATCH๏ƒ

The PATCH method applies partial modifications to a resource.

POST๏ƒ

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.

PUT๏ƒ

The PUT method replaces all current representations of the target resource with the request payload.