@aws-sdk/client-cost-explorer 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.
- package/dist-cjs/index.js +245 -241
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +244 -0
- package/dist-es/models/errors.js +215 -0
- package/dist-es/models/models_0.js +1 -456
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/commands/CreateAnomalyMonitorCommand.d.ts +1 -1
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +564 -0
- package/dist-types/models/errors.d.ts +208 -0
- package/dist-types/models/models_0.d.ts +51 -887
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +311 -0
- package/dist-types/ts3.4/models/errors.d.ts +127 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -435
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>The requested analysis can't be found.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AnalysisNotFoundException extends __BaseException {
|
|
8
|
+
readonly name: "AnalysisNotFoundException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AnalysisNotFoundException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>You made too many calls in a short period of time. Try again later.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class LimitExceededException extends __BaseException {
|
|
21
|
+
readonly name: "LimitExceededException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>The cost anomaly monitor does not exist for the account. </p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class UnknownMonitorException extends __BaseException {
|
|
34
|
+
readonly name: "UnknownMonitorException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<UnknownMonitorException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p> You've reached the limit on the number of resources you can create, or exceeded the
|
|
44
|
+
* size of an individual resource. </p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
48
|
+
readonly name: "ServiceQuotaExceededException";
|
|
49
|
+
readonly $fault: "client";
|
|
50
|
+
Message?: string | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* <p>The cost anomaly subscription does not exist for the account. </p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
export declare class UnknownSubscriptionException extends __BaseException {
|
|
61
|
+
readonly name: "UnknownSubscriptionException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Message?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
67
|
+
constructor(opts: __ExceptionOptionType<UnknownSubscriptionException, __BaseException>);
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* <p> The specified ARN in the request doesn't exist. </p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
74
|
+
readonly name: "ResourceNotFoundException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
Message?: string | undefined;
|
|
77
|
+
ResourceName?: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* <p>The pagination token is invalid. Try again without a pagination token.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
88
|
+
readonly name: "InvalidNextTokenException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>The requested data is unavailable.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class DataUnavailableException extends __BaseException {
|
|
101
|
+
readonly name: "DataUnavailableException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
Message?: string | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
constructor(opts: __ExceptionOptionType<DataUnavailableException, __BaseException>);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* <p>The requested report expired. Update the date interval and try again.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export declare class BillExpirationException extends __BaseException {
|
|
114
|
+
readonly name: "BillExpirationException";
|
|
115
|
+
readonly $fault: "client";
|
|
116
|
+
Message?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
120
|
+
constructor(opts: __ExceptionOptionType<BillExpirationException, __BaseException>);
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* <p>
|
|
124
|
+
* The billing view status must be <code>HEALTHY</code> to perform this action. Try again when the status is <code>HEALTHY</code>.
|
|
125
|
+
* </p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class BillingViewHealthStatusException extends __BaseException {
|
|
129
|
+
readonly name: "BillingViewHealthStatusException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
Message?: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
constructor(opts: __ExceptionOptionType<BillingViewHealthStatusException, __BaseException>);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* <p>Your request parameters changed between pages. Try again with the old parameters or
|
|
139
|
+
* without a pagination token.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export declare class RequestChangedException extends __BaseException {
|
|
143
|
+
readonly name: "RequestChangedException";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
Message?: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
149
|
+
constructor(opts: __ExceptionOptionType<RequestChangedException, __BaseException>);
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* <p>Cost Explorer was unable to identify the usage unit. Provide
|
|
153
|
+
* <code>UsageType/UsageTypeGroup</code> filter selections that contain matching units,
|
|
154
|
+
* for example: <code>hours</code>.</p>
|
|
155
|
+
* @public
|
|
156
|
+
*/
|
|
157
|
+
export declare class UnresolvableUsageUnitException extends __BaseException {
|
|
158
|
+
readonly name: "UnresolvableUsageUnitException";
|
|
159
|
+
readonly $fault: "client";
|
|
160
|
+
Message?: string | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
164
|
+
constructor(opts: __ExceptionOptionType<UnresolvableUsageUnitException, __BaseException>);
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* <p>A request to generate a recommendation or analysis is already in progress.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
export declare class GenerationExistsException extends __BaseException {
|
|
171
|
+
readonly name: "GenerationExistsException";
|
|
172
|
+
readonly $fault: "client";
|
|
173
|
+
Message?: string | undefined;
|
|
174
|
+
/**
|
|
175
|
+
* @internal
|
|
176
|
+
*/
|
|
177
|
+
constructor(opts: __ExceptionOptionType<GenerationExistsException, __BaseException>);
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* <p>
|
|
181
|
+
* A request to backfill is already in progress. Once the previous request is complete, you can create another request.
|
|
182
|
+
* </p>
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export declare class BackfillLimitExceededException extends __BaseException {
|
|
186
|
+
readonly name: "BackfillLimitExceededException";
|
|
187
|
+
readonly $fault: "client";
|
|
188
|
+
Message?: string | undefined;
|
|
189
|
+
/**
|
|
190
|
+
* @internal
|
|
191
|
+
*/
|
|
192
|
+
constructor(opts: __ExceptionOptionType<BackfillLimitExceededException, __BaseException>);
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* <p>Can occur if you specify a number of tags for a resource greater than the maximum 50
|
|
196
|
+
* user tags per resource.</p>
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
200
|
+
readonly name: "TooManyTagsException";
|
|
201
|
+
readonly $fault: "client";
|
|
202
|
+
Message?: string | undefined;
|
|
203
|
+
ResourceName?: string | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* @internal
|
|
206
|
+
*/
|
|
207
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
208
|
+
}
|