summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Textract
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/Textract
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Textract')
-rw-r--r--vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/Textract/TextractClient.php29
2 files changed, 38 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php b/vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php
new file mode 100644
index 0000000..20fc8de
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Textract/Exception/TextractException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Textract\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Textract** service.
+ */
+class TextractException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/Textract/TextractClient.php b/vendor/aws/aws-sdk-php/src/Textract/TextractClient.php
new file mode 100644
index 0000000..3940b2c
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Textract/TextractClient.php
@@ -0,0 +1,29 @@
+<?php
+namespace Aws\Textract;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Textract** service.
+ * @method \Aws\Result analyzeDocument(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise analyzeDocumentAsync(array $args = [])
+ * @method \Aws\Result analyzeExpense(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise analyzeExpenseAsync(array $args = [])
+ * @method \Aws\Result analyzeID(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise analyzeIDAsync(array $args = [])
+ * @method \Aws\Result detectDocumentText(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise detectDocumentTextAsync(array $args = [])
+ * @method \Aws\Result getDocumentAnalysis(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDocumentAnalysisAsync(array $args = [])
+ * @method \Aws\Result getDocumentTextDetection(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDocumentTextDetectionAsync(array $args = [])
+ * @method \Aws\Result getExpenseAnalysis(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getExpenseAnalysisAsync(array $args = [])
+ * @method \Aws\Result startDocumentAnalysis(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startDocumentAnalysisAsync(array $args = [])
+ * @method \Aws\Result startDocumentTextDetection(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startDocumentTextDetectionAsync(array $args = [])
+ * @method \Aws\Result startExpenseAnalysis(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startExpenseAnalysisAsync(array $args = [])
+ */
+class TextractClient extends AwsClient {}