software.amazon.awscdk.services.lambda.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambda Show documentation
Show all versions of lambda Show documentation
CDK Constructs for AWS Lambda
package software.amazon.awscdk.services.lambda;
/**
* All http request methods.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.74.0 (build 6d08790)", date = "2023-03-14T16:25:29.807Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.lambda.$Module.class, fqn = "@aws-cdk/aws-lambda.HttpMethod")
public enum HttpMethod {
/**
* The GET method requests a representation of the specified resource.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
GET,
/**
* The PUT method replaces all current representations of the target resource with the request payload.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
PUT,
/**
* The HEAD method asks for a response identical to that of a GET request, but without the response body.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
HEAD,
/**
* 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.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
POST,
/**
* The DELETE method deletes the specified resource.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
DELETE,
/**
* The PATCH method applies partial modifications to a resource.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
PATCH,
/**
* The OPTIONS method describes the communication options for the target resource.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
OPTIONS,
/**
* The wildcard entry to allow all methods.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
ALL,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy