summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SageMakerRuntime
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/SageMakerRuntime
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SageMakerRuntime')
-rw-r--r--vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php13
2 files changed, 22 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php
new file mode 100644
index 0000000..da36ca9
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/Exception/SageMakerRuntimeException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SageMakerRuntime\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon SageMaker Runtime** service.
+ */
+class SageMakerRuntimeException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php
new file mode 100644
index 0000000..9d36bcf
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SageMakerRuntime/SageMakerRuntimeClient.php
@@ -0,0 +1,13 @@
+<?php
+namespace Aws\SageMakerRuntime;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon SageMaker Runtime** service.
+ * @method \Aws\Result invokeEndpoint(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise invokeEndpointAsync(array $args = [])
+ * @method \Aws\Result invokeEndpointAsync(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise invokeEndpointAsyncAsync(array $args = [])
+ */
+class SageMakerRuntimeClient extends AwsClient {}