summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ivschat
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/ivschat
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ivschat')
-rw-r--r--vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php43
2 files changed, 52 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php b/vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php
new file mode 100644
index 0000000..137b803
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ivschat/Exception/ivschatException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ivschat\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Interactive Video Service Chat** service.
+ */
+class ivschatException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php b/vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php
new file mode 100644
index 0000000..b8eb978
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ivschat/ivschatClient.php
@@ -0,0 +1,43 @@
+<?php
+namespace Aws\ivschat;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Interactive Video Service Chat** service.
+ * @method \Aws\Result createChatToken(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createChatTokenAsync(array $args = [])
+ * @method \Aws\Result createLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result createRoom(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createRoomAsync(array $args = [])
+ * @method \Aws\Result deleteLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result deleteMessage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteMessageAsync(array $args = [])
+ * @method \Aws\Result deleteRoom(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteRoomAsync(array $args = [])
+ * @method \Aws\Result disconnectUser(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise disconnectUserAsync(array $args = [])
+ * @method \Aws\Result getLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result getRoom(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRoomAsync(array $args = [])
+ * @method \Aws\Result listLoggingConfigurations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listLoggingConfigurationsAsync(array $args = [])
+ * @method \Aws\Result listRooms(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRoomsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result sendEvent(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendEventAsync(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 updateLoggingConfiguration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateLoggingConfigurationAsync(array $args = [])
+ * @method \Aws\Result updateRoom(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateRoomAsync(array $args = [])
+ */
+class ivschatClient extends AwsClient {}