@aws-sdk/client-compute-optimizer 3.934.0 → 3.935.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,111 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
3
+ /**
4
+ * <p>You do not have sufficient access to perform this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>An internal error has occurred. Try your call again.</p>
17
+ * @public
18
+ */
19
+ export declare class InternalServerException extends __BaseException {
20
+ readonly name: "InternalServerException";
21
+ readonly $fault: "server";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>The value supplied for the input parameter is out of range or not valid.</p>
29
+ * @public
30
+ */
31
+ export declare class InvalidParameterValueException extends __BaseException {
32
+ readonly name: "InvalidParameterValueException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
38
+ }
39
+ /**
40
+ * <p>The request must contain either a valid (registered) Amazon Web Services access key ID
41
+ * or X.509 certificate.</p>
42
+ * @public
43
+ */
44
+ export declare class MissingAuthenticationToken extends __BaseException {
45
+ readonly name: "MissingAuthenticationToken";
46
+ readonly $fault: "client";
47
+ /**
48
+ * @internal
49
+ */
50
+ constructor(opts: __ExceptionOptionType<MissingAuthenticationToken, __BaseException>);
51
+ }
52
+ /**
53
+ * <p>The account is not opted in to Compute Optimizer.</p>
54
+ * @public
55
+ */
56
+ export declare class OptInRequiredException extends __BaseException {
57
+ readonly name: "OptInRequiredException";
58
+ readonly $fault: "client";
59
+ /**
60
+ * @internal
61
+ */
62
+ constructor(opts: __ExceptionOptionType<OptInRequiredException, __BaseException>);
63
+ }
64
+ /**
65
+ * <p>A resource that is required for the action doesn't exist.</p>
66
+ * @public
67
+ */
68
+ export declare class ResourceNotFoundException extends __BaseException {
69
+ readonly name: "ResourceNotFoundException";
70
+ readonly $fault: "client";
71
+ /**
72
+ * @internal
73
+ */
74
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
75
+ }
76
+ /**
77
+ * <p>The request has failed due to a temporary failure of the server.</p>
78
+ * @public
79
+ */
80
+ export declare class ServiceUnavailableException extends __BaseException {
81
+ readonly name: "ServiceUnavailableException";
82
+ readonly $fault: "server";
83
+ /**
84
+ * @internal
85
+ */
86
+ constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
87
+ }
88
+ /**
89
+ * <p>The request was denied due to request throttling.</p>
90
+ * @public
91
+ */
92
+ export declare class ThrottlingException extends __BaseException {
93
+ readonly name: "ThrottlingException";
94
+ readonly $fault: "client";
95
+ /**
96
+ * @internal
97
+ */
98
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
99
+ }
100
+ /**
101
+ * <p>The request exceeds a limit of the service.</p>
102
+ * @public
103
+ */
104
+ export declare class LimitExceededException extends __BaseException {
105
+ readonly name: "LimitExceededException";
106
+ readonly $fault: "client";
107
+ /**
108
+ * @internal
109
+ */
110
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
111
+ }