aws-cdk-lib.aws_s3.HttpMethods

enum HttpMethods

LanguageType name
.NETAmazon.CDK.AWS.S3.HttpMethods
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3#HttpMethods
Javasoftware.amazon.awscdk.services.s3.HttpMethods
Pythonaws_cdk.aws_s3.HttpMethods
TypeScript (source)aws-cdk-lib » aws_s3 » HttpMethods

All http request methods.

Members

NameDescription
GETThe GET method requests a representation of the specified resource.
PUTThe PUT method replaces all current representations of the target resource with the request payload.
HEADThe HEAD method asks for a response identical to that of a GET request, but without the response body.
POSTThe POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server.
DELETEThe DELETE method deletes the specified resource.

GET

The GET method requests a representation of the specified resource.


PUT

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


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.


DELETE

The DELETE method deletes the specified resource.