summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/ForecastQueryService
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/ForecastQueryService
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/ForecastQueryService')
-rw-r--r--vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php13
2 files changed, 22 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php b/vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php
new file mode 100644
index 0000000..84a171f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ForecastQueryService/Exception/ForecastQueryServiceException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\ForecastQueryService\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Forecast Query Service** service.
+ */
+class ForecastQueryServiceException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php b/vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php
new file mode 100644
index 0000000..875dd62
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/ForecastQueryService/ForecastQueryServiceClient.php
@@ -0,0 +1,13 @@
+<?php
+namespace Aws\ForecastQueryService;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Forecast Query Service** service.
+ * @method \Aws\Result queryForecast(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise queryForecastAsync(array $args = [])
+ * @method \Aws\Result queryWhatIfForecast(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise queryWhatIfForecastAsync(array $args = [])
+ */
+class ForecastQueryServiceClient extends AwsClient {}