SfnClient.php 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 describeStateMachineForExecution(array $args = [])
  21. * @method \GuzzleHttp\Promise\Promise describeStateMachineForExecutionAsync(array $args = [])
  22. * @method \Aws\Result getActivityTask(array $args = [])
  23. * @method \GuzzleHttp\Promise\Promise getActivityTaskAsync(array $args = [])
  24. * @method \Aws\Result getExecutionHistory(array $args = [])
  25. * @method \GuzzleHttp\Promise\Promise getExecutionHistoryAsync(array $args = [])
  26. * @method \Aws\Result listActivities(array $args = [])
  27. * @method \GuzzleHttp\Promise\Promise listActivitiesAsync(array $args = [])
  28. * @method \Aws\Result listExecutions(array $args = [])
  29. * @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
  30. * @method \Aws\Result listStateMachines(array $args = [])
  31. * @method \GuzzleHttp\Promise\Promise listStateMachinesAsync(array $args = [])
  32. * @method \Aws\Result listTagsForResource(array $args = [])
  33. * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
  34. * @method \Aws\Result sendTaskFailure(array $args = [])
  35. * @method \GuzzleHttp\Promise\Promise sendTaskFailureAsync(array $args = [])
  36. * @method \Aws\Result sendTaskHeartbeat(array $args = [])
  37. * @method \GuzzleHttp\Promise\Promise sendTaskHeartbeatAsync(array $args = [])
  38. * @method \Aws\Result sendTaskSuccess(array $args = [])
  39. * @method \GuzzleHttp\Promise\Promise sendTaskSuccessAsync(array $args = [])
  40. * @method \Aws\Result startExecution(array $args = [])
  41. * @method \GuzzleHttp\Promise\Promise startExecutionAsync(array $args = [])
  42. * @method \Aws\Result startSyncExecution(array $args = [])
  43. * @method \GuzzleHttp\Promise\Promise startSyncExecutionAsync(array $args = [])
  44. * @method \Aws\Result stopExecution(array $args = [])
  45. * @method \GuzzleHttp\Promise\Promise stopExecutionAsync(array $args = [])
  46. * @method \Aws\Result tagResource(array $args = [])
  47. * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
  48. * @method \Aws\Result untagResource(array $args = [])
  49. * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
  50. * @method \Aws\Result updateStateMachine(array $args = [])
  51. * @method \GuzzleHttp\Promise\Promise updateStateMachineAsync(array $args = [])
  52. */
  53. class SfnClient extends AwsClient {}