Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
namespace Aws\Sfn;
3
 
4
use Aws\AwsClient;
5
 
6
/**
7
 * This client is used to interact with the **AWS Step Functions** service.
8
 * @method \Aws\Result createActivity(array $args = [])
9
 * @method \GuzzleHttp\Promise\Promise createActivityAsync(array $args = [])
10
 * @method \Aws\Result createStateMachine(array $args = [])
11
 * @method \GuzzleHttp\Promise\Promise createStateMachineAsync(array $args = [])
12
 * @method \Aws\Result createStateMachineAlias(array $args = [])
13
 * @method \GuzzleHttp\Promise\Promise createStateMachineAliasAsync(array $args = [])
14
 * @method \Aws\Result deleteActivity(array $args = [])
15
 * @method \GuzzleHttp\Promise\Promise deleteActivityAsync(array $args = [])
16
 * @method \Aws\Result deleteStateMachine(array $args = [])
17
 * @method \GuzzleHttp\Promise\Promise deleteStateMachineAsync(array $args = [])
18
 * @method \Aws\Result deleteStateMachineAlias(array $args = [])
19
 * @method \GuzzleHttp\Promise\Promise deleteStateMachineAliasAsync(array $args = [])
20
 * @method \Aws\Result deleteStateMachineVersion(array $args = [])
21
 * @method \GuzzleHttp\Promise\Promise deleteStateMachineVersionAsync(array $args = [])
22
 * @method \Aws\Result describeActivity(array $args = [])
23
 * @method \GuzzleHttp\Promise\Promise describeActivityAsync(array $args = [])
24
 * @method \Aws\Result describeExecution(array $args = [])
25
 * @method \GuzzleHttp\Promise\Promise describeExecutionAsync(array $args = [])
26
 * @method \Aws\Result describeMapRun(array $args = [])
27
 * @method \GuzzleHttp\Promise\Promise describeMapRunAsync(array $args = [])
28
 * @method \Aws\Result describeStateMachine(array $args = [])
29
 * @method \GuzzleHttp\Promise\Promise describeStateMachineAsync(array $args = [])
30
 * @method \Aws\Result describeStateMachineAlias(array $args = [])
31
 * @method \GuzzleHttp\Promise\Promise describeStateMachineAliasAsync(array $args = [])
32
 * @method \Aws\Result describeStateMachineForExecution(array $args = [])
33
 * @method \GuzzleHttp\Promise\Promise describeStateMachineForExecutionAsync(array $args = [])
34
 * @method \Aws\Result getActivityTask(array $args = [])
35
 * @method \GuzzleHttp\Promise\Promise getActivityTaskAsync(array $args = [])
36
 * @method \Aws\Result getExecutionHistory(array $args = [])
37
 * @method \GuzzleHttp\Promise\Promise getExecutionHistoryAsync(array $args = [])
38
 * @method \Aws\Result listActivities(array $args = [])
39
 * @method \GuzzleHttp\Promise\Promise listActivitiesAsync(array $args = [])
40
 * @method \Aws\Result listExecutions(array $args = [])
41
 * @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
42
 * @method \Aws\Result listMapRuns(array $args = [])
43
 * @method \GuzzleHttp\Promise\Promise listMapRunsAsync(array $args = [])
44
 * @method \Aws\Result listStateMachineAliases(array $args = [])
45
 * @method \GuzzleHttp\Promise\Promise listStateMachineAliasesAsync(array $args = [])
46
 * @method \Aws\Result listStateMachineVersions(array $args = [])
47
 * @method \GuzzleHttp\Promise\Promise listStateMachineVersionsAsync(array $args = [])
48
 * @method \Aws\Result listStateMachines(array $args = [])
49
 * @method \GuzzleHttp\Promise\Promise listStateMachinesAsync(array $args = [])
50
 * @method \Aws\Result listTagsForResource(array $args = [])
51
 * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
52
 * @method \Aws\Result publishStateMachineVersion(array $args = [])
53
 * @method \GuzzleHttp\Promise\Promise publishStateMachineVersionAsync(array $args = [])
54
 * @method \Aws\Result sendTaskFailure(array $args = [])
55
 * @method \GuzzleHttp\Promise\Promise sendTaskFailureAsync(array $args = [])
56
 * @method \Aws\Result sendTaskHeartbeat(array $args = [])
57
 * @method \GuzzleHttp\Promise\Promise sendTaskHeartbeatAsync(array $args = [])
58
 * @method \Aws\Result sendTaskSuccess(array $args = [])
59
 * @method \GuzzleHttp\Promise\Promise sendTaskSuccessAsync(array $args = [])
60
 * @method \Aws\Result startExecution(array $args = [])
61
 * @method \GuzzleHttp\Promise\Promise startExecutionAsync(array $args = [])
62
 * @method \Aws\Result startSyncExecution(array $args = [])
63
 * @method \GuzzleHttp\Promise\Promise startSyncExecutionAsync(array $args = [])
64
 * @method \Aws\Result stopExecution(array $args = [])
65
 * @method \GuzzleHttp\Promise\Promise stopExecutionAsync(array $args = [])
66
 * @method \Aws\Result tagResource(array $args = [])
67
 * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
68
 * @method \Aws\Result untagResource(array $args = [])
69
 * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
70
 * @method \Aws\Result updateMapRun(array $args = [])
71
 * @method \GuzzleHttp\Promise\Promise updateMapRunAsync(array $args = [])
72
 * @method \Aws\Result updateStateMachine(array $args = [])
73
 * @method \GuzzleHttp\Promise\Promise updateStateMachineAsync(array $args = [])
74
 * @method \Aws\Result updateStateMachineAlias(array $args = [])
75
 * @method \GuzzleHttp\Promise\Promise updateStateMachineAliasAsync(array $args = [])
76
 */
77
class SfnClient extends AwsClient {}