AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
S3Errors.h
Go to the documentation of this file.
1
6#pragma once
7
10#include <aws/s3/S3_EXPORTS.h>
11
12namespace Aws
13{
14namespace S3
15{
16enum class S3Errors
17{
18 //From Core//
27 MISSING_ACTION = 7, // SDK should never allow
28 MISSING_AUTHENTICATION_TOKEN = 8, // SDK should never allow
29 MISSING_PARAMETER = 9, // SDK should never allow
30 OPT_IN_REQUIRED = 10,
31 REQUEST_EXPIRED = 11,
33 THROTTLING = 13,
34 VALIDATION = 14,
35 ACCESS_DENIED = 15,
39 SLOW_DOWN = 19,
44 REQUEST_TIMEOUT = 24,
46
47 UNKNOWN = 100,
49
50 BUCKET_ALREADY_EXISTS= static_cast<int>(Aws::Client::CoreErrors::SERVICE_EXTENSION_START_RANGE) + 1,
58};
59
61{
62public:
64 S3Error(const Aws::Client::AWSError<Aws::Client::CoreErrors>& rhs) : Aws::Client::AWSError<S3Errors>(rhs) {}
66 S3Error(const Aws::Client::AWSError<S3Errors>& rhs) : Aws::Client::AWSError<S3Errors>(rhs) {}
67 S3Error(Aws::Client::AWSError<S3Errors>&& rhs) : Aws::Client::AWSError<S3Errors>(rhs) {}
68
69 template <typename T>
71};
72
73namespace S3ErrorMapper
74{
76}
77
78} // namespace S3
79} // namespace Aws
#define AWS_S3_API
Definition: S3_EXPORTS.h:28
S3Error(Aws::Client::AWSError< Aws::Client::CoreErrors > &&rhs)
Definition: S3Errors.h:65
S3Error(const Aws::Client::AWSError< Aws::Client::CoreErrors > &rhs)
Definition: S3Errors.h:64
S3Error(Aws::Client::AWSError< S3Errors > &&rhs)
Definition: S3Errors.h:67
S3Error(const Aws::Client::AWSError< S3Errors > &rhs)
Definition: S3Errors.h:66
AWS_S3_API Aws::Client::AWSError< Aws::Client::CoreErrors > GetErrorForName(const char *errorName)
S3Errors
Definition: S3Errors.h:17