summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/S3Outposts
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/S3Outposts')
-rw-r--r--vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php17
2 files changed, 26 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php b/vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php
new file mode 100644
index 0000000..422a954
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/S3Outposts/Exception/S3OutpostsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\S3Outposts\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon S3 on Outposts** service.
+ */
+class S3OutpostsException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php b/vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php
new file mode 100644
index 0000000..2c3c897
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/S3Outposts/S3OutpostsClient.php
@@ -0,0 +1,17 @@
+<?php
+namespace Aws\S3Outposts;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon S3 on Outposts** service.
+ * @method \Aws\Result createEndpoint(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createEndpointAsync(array $args = [])
+ * @method \Aws\Result deleteEndpoint(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteEndpointAsync(array $args = [])
+ * @method \Aws\Result listEndpoints(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listEndpointsAsync(array $args = [])
+ * @method \Aws\Result listSharedEndpoints(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSharedEndpointsAsync(array $args = [])
+ */
+class S3OutpostsClient extends AwsClient {}