HttpMethod
- class aws_cdk.aws_stepfunctions_tasks.HttpMethod(*values)
 Bases:
EnumHttp Methods that API Gateway supports.
- ExampleMetadata:
 infused
Example:
import aws_cdk.aws_apigateway as apigateway # api: apigateway.RestApi tasks.CallApiGatewayRestApiEndpoint.jsonata(self, "Endpoint", api=api, stage_name="Stage", method=tasks.HttpMethod.PUT, integration_pattern=sfn.IntegrationPattern.WAIT_FOR_TASK_TOKEN, headers=sfn.TaskInput.from_object({ "TaskToken": "{% States.Array($states.context.taskToken) %}" }) )
Attributes
- DELETE
 Delete the resource at the specified endpoint.
- GET
 Retrieve data from a server at the specified resource.
- HEAD
 Retrieve data from a server at the specified resource without the response body.
- OPTIONS
 Return data describing what other methods and operations the server supports.
- PATCH
 Apply partial modifications to the resource.
- POST
 Send data to the API endpoint to create or udpate a resource.
- PUT
 Send data to the API endpoint to update or create a resource.