Module: AWSCDK::StepFunctionsTasks::HttpMethods
- Defined in:
- step_functions_tasks/http_methods.rb
Overview
Method type of a EKS call.
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.HttpMethods", "GET")
- POST =
Deprecated.Note:
Default:
Send data to the API endpoint to create or update a resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethods", "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.HttpMethods", "PUT")
- DELETE =
Deprecated.Note:
Default:
Delete the resource at the specified endpoint.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethods", "DELETE")
- PATCH =
Deprecated.Note:
Default:
Apply partial modifications to the resource.
Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions_tasks.HttpMethods", "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.HttpMethods", "HEAD")