Module: AWSCDK::S3::HttpMethods

Defined in:
s3/http_methods.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_s3.HttpMethods", "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_s3.HttpMethods", "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_s3.HttpMethods", "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_s3.HttpMethods", "POST")
DELETE =
Deprecated.
Note:

Default:

The DELETE method deletes the specified resource.

Jsii::Enum.new("aws-cdk-lib.aws_s3.HttpMethods", "DELETE")