summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Sfn
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/Sfn
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Sfn')
-rw-r--r--vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php55
2 files changed, 64 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php b/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php
new file mode 100644
index 0000000..12368f8
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Sfn/Exception/SfnException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Sfn\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Step Functions** service.
+ */
+class SfnException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php b/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php
new file mode 100644
index 0000000..dd72197
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Sfn/SfnClient.php
@@ -0,0 +1,55 @@
+<?php
+namespace Aws\Sfn;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Step Functions** service.
+ * @method \Aws\Result createActivity(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createActivityAsync(array $args = [])
+ * @method \Aws\Result createStateMachine(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createStateMachineAsync(array $args = [])
+ * @method \Aws\Result deleteActivity(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteActivityAsync(array $args = [])
+ * @method \Aws\Result deleteStateMachine(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteStateMachineAsync(array $args = [])
+ * @method \Aws\Result describeActivity(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeActivityAsync(array $args = [])
+ * @method \Aws\Result describeExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeExecutionAsync(array $args = [])
+ * @method \Aws\Result describeStateMachine(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeStateMachineAsync(array $args = [])
+ * @method \Aws\Result describeStateMachineForExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeStateMachineForExecutionAsync(array $args = [])
+ * @method \Aws\Result getActivityTask(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getActivityTaskAsync(array $args = [])
+ * @method \Aws\Result getExecutionHistory(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getExecutionHistoryAsync(array $args = [])
+ * @method \Aws\Result listActivities(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listActivitiesAsync(array $args = [])
+ * @method \Aws\Result listExecutions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listExecutionsAsync(array $args = [])
+ * @method \Aws\Result listStateMachines(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listStateMachinesAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result sendTaskFailure(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendTaskFailureAsync(array $args = [])
+ * @method \Aws\Result sendTaskHeartbeat(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendTaskHeartbeatAsync(array $args = [])
+ * @method \Aws\Result sendTaskSuccess(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendTaskSuccessAsync(array $args = [])
+ * @method \Aws\Result startExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startExecutionAsync(array $args = [])
+ * @method \Aws\Result startSyncExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startSyncExecutionAsync(array $args = [])
+ * @method \Aws\Result stopExecution(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopExecutionAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updateStateMachine(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateStateMachineAsync(array $args = [])
+ */
+class SfnClient extends AwsClient {}