HttpMethods

class aws_cdk.aws_s3.HttpMethods(value)

Bases: Enum

All http request methods.

Attributes

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.

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.