summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/RDSDataService
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/RDSDataService
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/RDSDataService')
-rw-r--r--vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php21
2 files changed, 30 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php b/vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php
new file mode 100644
index 0000000..eebd45f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/RDSDataService/Exception/RDSDataServiceException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\RDSDataService\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS RDS DataService** service.
+ */
+class RDSDataServiceException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php b/vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php
new file mode 100644
index 0000000..34620ae
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/RDSDataService/RDSDataServiceClient.php
@@ -0,0 +1,21 @@
+<?php
+namespace Aws\RDSDataService;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS RDS DataService** service.
+ * @method \Aws\Result batchExecuteStatement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise batchExecuteStatementAsync(array $args = [])
+ * @method \Aws\Result beginTransaction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise beginTransactionAsync(array $args = [])
+ * @method \Aws\Result commitTransaction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise commitTransactionAsync(array $args = [])
+ * @method \Aws\Result executeSql(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise executeSqlAsync(array $args = [])
+ * @method \Aws\Result executeStatement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise executeStatementAsync(array $args = [])
+ * @method \Aws\Result rollbackTransaction(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise rollbackTransactionAsync(array $args = [])
+ */
+class RDSDataServiceClient extends AwsClient {}