summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/PinpointSMSVoice
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/PinpointSMSVoice
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/PinpointSMSVoice')
-rw-r--r--vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php25
2 files changed, 34 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php
new file mode 100644
index 0000000..d41fb7d
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/Exception/PinpointSMSVoiceException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\PinpointSMSVoice\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Pinpoint SMS and Voice Service** service.
+ */
+class PinpointSMSVoiceException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php
new file mode 100644
index 0000000..c926939
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/PinpointSMSVoice/PinpointSMSVoiceClient.php
@@ -0,0 +1,25 @@
+<?php
+namespace Aws\PinpointSMSVoice;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Pinpoint SMS and Voice Service** service.
+ * @method \Aws\Result createConfigurationSet(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createConfigurationSetAsync(array $args = [])
+ * @method \Aws\Result createConfigurationSetEventDestination(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createConfigurationSetEventDestinationAsync(array $args = [])
+ * @method \Aws\Result deleteConfigurationSet(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteConfigurationSetAsync(array $args = [])
+ * @method \Aws\Result deleteConfigurationSetEventDestination(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteConfigurationSetEventDestinationAsync(array $args = [])
+ * @method \Aws\Result getConfigurationSetEventDestinations(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getConfigurationSetEventDestinationsAsync(array $args = [])
+ * @method \Aws\Result listConfigurationSets(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConfigurationSetsAsync(array $args = [])
+ * @method \Aws\Result sendVoiceMessage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendVoiceMessageAsync(array $args = [])
+ * @method \Aws\Result updateConfigurationSetEventDestination(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateConfigurationSetEventDestinationAsync(array $args = [])
+ */
+class PinpointSMSVoiceClient extends AwsClient {}