SfnClient.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace Aws\Sfn;
  3. use Aws\AwsClient;
  4. /**
  5. * This client is used to interact with the **AWS Step Functions** service.
  6. * @method \Aws\Result createActivity(array $args = [])
  7. * @method \GuzzleHttp\Promise\Promise createActivityAsync(array $args = [])
  8. * @method \Aws\Result createStateMachine(array $args = [])
  9. * @method \GuzzleHttp\Promise\Promise createStateMachineAsync(array $args = [])
  10. * @method \Aws\Result deleteActivity(array $args = [])
  11. * @method \GuzzleHttp\Promise\Promise deleteActivityAsync(array $args = [])
  12. * @method \Aws\Result deleteStateMachine(array $args = [])
  13. * @method \GuzzleHttp\Promise\Promise deleteStateMachineAsync(array $args = [])
  14. * @method \Aws\Result describeActivity(array $args = [])
  15. * @method \GuzzleHttp\Promise\Promise describeActivityAsync(array $args = [])
  16. * @method \Aws\Result describeExecution(array $args = [])
  17. * @method \GuzzleHttp\Promise\Promise describeExecutionAsync(array $args = [])
  18. * @method \Aws\Result describeStateMachine(array $args = [])
  19. * @method \GuzzleHttp\Promise\Promise describeStateMachineAsync(array $args = [])
  20. * @method \Aws\Result getActivityTask(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise getActivityTaskAsync(array $args = [])
  22. * @method \Aws\Result getExecutionHistory(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise getExecutionHistoryAsync(array $args = [])
  24. * @method \Aws\Result listActivities(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise listActivitiesAsync(array $args = [])
  26. * @method \Aws\Result listExecutions(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
  28. * @method \Aws\Result listStateMachines(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise listStateMachinesAsync(array $args = [])
  30. * @method \Aws\Result sendTaskFailure(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise sendTaskFailureAsync(array $args = [])
  32. * @method \Aws\Result sendTaskHeartbeat(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise sendTaskHeartbeatAsync(array $args = [])
  34. * @method \Aws\Result sendTaskSuccess(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise sendTaskSuccessAsync(array $args = [])
  36. * @method \Aws\Result startExecution(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise startExecutionAsync(array $args = [])
  38. * @method \Aws\Result stopExecution(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise stopExecutionAsync(array $args = [])
  40. */
  41. class SfnClient extends AwsClient {}