From 0c8af4992cb0f7589dcafaad65ada12753c64594 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 23 Nov 2022 21:14:33 +0300 Subject: initial --- vendor/aws/aws-sdk-php/src/AwsClientInterface.php | 169 ++++++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 vendor/aws/aws-sdk-php/src/AwsClientInterface.php (limited to 'vendor/aws/aws-sdk-php/src/AwsClientInterface.php') diff --git a/vendor/aws/aws-sdk-php/src/AwsClientInterface.php b/vendor/aws/aws-sdk-php/src/AwsClientInterface.php new file mode 100644 index 0000000..12a5701 --- /dev/null +++ b/vendor/aws/aws-sdk-php/src/AwsClientInterface.php @@ -0,0 +1,169 @@ +getWaiter('foo', ['bar' => 'baz']); + * $waiter->promise()->then(function () { echo 'Done!'; }); + * + * @param string|callable $name Name of the waiter that defines the wait + * configuration and conditions. + * @param array $args Args to be used with each command executed + * by the waiter. Waiter configuration options + * can be provided in an associative array in + * the @waiter key. + * @return \Aws\Waiter + * @throws \UnexpectedValueException if the waiter is invalid. + */ + public function getWaiter($name, array $args = []); +} -- cgit v1.2.3