Module: AWSCDK::StepFunctionsTasks::HttpMethod
- Defined in:
- step_functions_tasks/http_method.rb
Overview
Http Methods that API Gateway supports.
Constant Summary collapse
- GET =
Deprecated.Note:
Default:
Retrieve data from a server at the specified resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "GET")
- POST =
Deprecated.Note:
Default:
Send data to the API endpoint to create or udpate a resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "POST")
- PUT =
Deprecated.Note:
Default:
Send data to the API endpoint to update or create a resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "PUT")
- DELETE =
Deprecated.Note:
Default:
Delete the resource at the specified endpoint.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "DELETE")
- PATCH =
Deprecated.Note:
Default:
Apply partial modifications to the resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "PATCH")
- HEAD =
Deprecated.Note:
Default:
Retrieve data from a server at the specified resource without the response body.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "HEAD")
- OPTIONS =
Deprecated.Note:
Default:
Return data describing what other methods and operations the server supports.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethod", "OPTIONS")