@aws-sdk/client-cost-explorer 3.1075.0 → 3.1077.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 +2672 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -68
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CostExplorerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -215
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2209
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultCostExplorerHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "ce",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultCostExplorerHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,2352 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const n = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = "sigv4", i = { [n]: "Endpoint" }, j = { [n]: d }, k = { "fn": f, "argv": [j, "name"] }, l = { "authSchemes": [{ "name": h, "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, m = [{ [n]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [i]],
|
|
80
|
+
[c, m],
|
|
81
|
+
["aws.partition", m, d],
|
|
82
|
+
[e, [{ [n]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [j, "supportsFIPS"] }, b]],
|
|
84
|
+
[e, [{ [n]: "UseDualStack" }, b]],
|
|
85
|
+
[g, [k, "aws-iso"]],
|
|
86
|
+
[g, [k, "aws-iso-b"]],
|
|
87
|
+
[g, [k, "aws-iso-e"]],
|
|
88
|
+
[g, [k, "aws"]],
|
|
89
|
+
[g, [k, "aws-cn"]],
|
|
90
|
+
[g, [k, "aws-iso-f"]],
|
|
91
|
+
[g, [k, "aws-eusc"]],
|
|
92
|
+
[e, [{ fn: f, argv: [j, "supportsDualStack"] }, b]]
|
|
93
|
+
],
|
|
94
|
+
results: [
|
|
95
|
+
[a],
|
|
96
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
97
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
98
|
+
[i, {}],
|
|
99
|
+
["https://ce.us-east-1.api.aws", { authSchemes: [{ name: h, signingRegion: "us-east-1" }] }],
|
|
100
|
+
["https://ce.cn-northwest-1.api.amazonwebservices.com.cn", { authSchemes: [{ name: h, signingRegion: "cn-northwest-1" }] }],
|
|
101
|
+
["https://ce.us-iso-east-1.c2s.ic.gov", { authSchemes: [{ name: h, signingRegion: "us-iso-east-1" }] }],
|
|
102
|
+
["https://ce.us-isob-east-1.sc2s.sgov.gov", { authSchemes: [{ name: h, signingRegion: "us-isob-east-1" }] }],
|
|
103
|
+
["https://ce.eu-isoe-west-1.cloud.adc-e.uk", { authSchemes: [{ name: h, signingRegion: "eu-isoe-west-1" }] }],
|
|
104
|
+
["https://ce.us-isof-south-1.csp.hci.ic.gov", { authSchemes: [{ name: h, signingRegion: "us-isof-south-1" }] }],
|
|
105
|
+
["https://ce.eusc-de-east-1.api.amazonwebservices.eu", { authSchemes: [{ name: h, signingRegion: "eusc-de-east-1" }] }],
|
|
106
|
+
["https://ce-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", l],
|
|
107
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
108
|
+
["https://ce-fips.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", l],
|
|
109
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
110
|
+
["https://ce.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dualStackDnsSuffix}", l],
|
|
111
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
112
|
+
["https://ce.{PartitionResult#implicitGlobalRegion}.{PartitionResult#dnsSuffix}", l],
|
|
113
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
114
|
+
]
|
|
115
|
+
};
|
|
116
|
+
const root = 2;
|
|
117
|
+
const r = 100_000_000;
|
|
118
|
+
const nodes = new Int32Array([
|
|
119
|
+
-1, 1, -1,
|
|
120
|
+
0, 20, 3,
|
|
121
|
+
1, 4, r + 18,
|
|
122
|
+
2, 5, r + 18,
|
|
123
|
+
3, 16, 6,
|
|
124
|
+
5, 12, 7,
|
|
125
|
+
6, r + 6, 8,
|
|
126
|
+
7, r + 7, 9,
|
|
127
|
+
8, r + 8, 10,
|
|
128
|
+
11, r + 9, 11,
|
|
129
|
+
12, r + 10, r + 17,
|
|
130
|
+
9, r + 4, 13,
|
|
131
|
+
10, r + 5, 14,
|
|
132
|
+
12, r + 10, 15,
|
|
133
|
+
13, r + 15, r + 16,
|
|
134
|
+
4, 18, 17,
|
|
135
|
+
5, r + 12, r + 14,
|
|
136
|
+
5, 19, r + 13,
|
|
137
|
+
13, r + 11, r + 12,
|
|
138
|
+
3, r + 1, 21,
|
|
139
|
+
5, r + 2, r + 3,
|
|
140
|
+
]);
|
|
141
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
142
|
+
|
|
143
|
+
const cache = new EndpointCache({
|
|
144
|
+
size: 50,
|
|
145
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
146
|
+
});
|
|
147
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
148
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
149
|
+
endpointParams: endpointParams,
|
|
150
|
+
logger: context.logger,
|
|
151
|
+
}));
|
|
152
|
+
};
|
|
153
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
154
|
+
|
|
155
|
+
class CostExplorerServiceException extends ServiceException {
|
|
156
|
+
constructor(options) {
|
|
157
|
+
super(options);
|
|
158
|
+
Object.setPrototypeOf(this, CostExplorerServiceException.prototype);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
class AnalysisNotFoundException extends CostExplorerServiceException {
|
|
163
|
+
name = "AnalysisNotFoundException";
|
|
164
|
+
$fault = "client";
|
|
165
|
+
Message;
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "AnalysisNotFoundException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, AnalysisNotFoundException.prototype);
|
|
173
|
+
this.Message = opts.Message;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class LimitExceededException extends CostExplorerServiceException {
|
|
177
|
+
name = "LimitExceededException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
Message;
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "LimitExceededException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
187
|
+
this.Message = opts.Message;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
class UnknownMonitorException extends CostExplorerServiceException {
|
|
191
|
+
name = "UnknownMonitorException";
|
|
192
|
+
$fault = "client";
|
|
193
|
+
Message;
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "UnknownMonitorException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, UnknownMonitorException.prototype);
|
|
201
|
+
this.Message = opts.Message;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
class ServiceQuotaExceededException extends CostExplorerServiceException {
|
|
205
|
+
name = "ServiceQuotaExceededException";
|
|
206
|
+
$fault = "client";
|
|
207
|
+
Message;
|
|
208
|
+
constructor(opts) {
|
|
209
|
+
super({
|
|
210
|
+
name: "ServiceQuotaExceededException",
|
|
211
|
+
$fault: "client",
|
|
212
|
+
...opts,
|
|
213
|
+
});
|
|
214
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
215
|
+
this.Message = opts.Message;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
class UnknownSubscriptionException extends CostExplorerServiceException {
|
|
219
|
+
name = "UnknownSubscriptionException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
Message;
|
|
222
|
+
constructor(opts) {
|
|
223
|
+
super({
|
|
224
|
+
name: "UnknownSubscriptionException",
|
|
225
|
+
$fault: "client",
|
|
226
|
+
...opts,
|
|
227
|
+
});
|
|
228
|
+
Object.setPrototypeOf(this, UnknownSubscriptionException.prototype);
|
|
229
|
+
this.Message = opts.Message;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
class ResourceNotFoundException extends CostExplorerServiceException {
|
|
233
|
+
name = "ResourceNotFoundException";
|
|
234
|
+
$fault = "client";
|
|
235
|
+
Message;
|
|
236
|
+
ResourceName;
|
|
237
|
+
constructor(opts) {
|
|
238
|
+
super({
|
|
239
|
+
name: "ResourceNotFoundException",
|
|
240
|
+
$fault: "client",
|
|
241
|
+
...opts,
|
|
242
|
+
});
|
|
243
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
244
|
+
this.Message = opts.Message;
|
|
245
|
+
this.ResourceName = opts.ResourceName;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
class InvalidNextTokenException extends CostExplorerServiceException {
|
|
249
|
+
name = "InvalidNextTokenException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
Message;
|
|
252
|
+
constructor(opts) {
|
|
253
|
+
super({
|
|
254
|
+
name: "InvalidNextTokenException",
|
|
255
|
+
$fault: "client",
|
|
256
|
+
...opts,
|
|
257
|
+
});
|
|
258
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
259
|
+
this.Message = opts.Message;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
class DataUnavailableException extends CostExplorerServiceException {
|
|
263
|
+
name = "DataUnavailableException";
|
|
264
|
+
$fault = "client";
|
|
265
|
+
Message;
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "DataUnavailableException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, DataUnavailableException.prototype);
|
|
273
|
+
this.Message = opts.Message;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
class BillExpirationException extends CostExplorerServiceException {
|
|
277
|
+
name = "BillExpirationException";
|
|
278
|
+
$fault = "client";
|
|
279
|
+
Message;
|
|
280
|
+
constructor(opts) {
|
|
281
|
+
super({
|
|
282
|
+
name: "BillExpirationException",
|
|
283
|
+
$fault: "client",
|
|
284
|
+
...opts,
|
|
285
|
+
});
|
|
286
|
+
Object.setPrototypeOf(this, BillExpirationException.prototype);
|
|
287
|
+
this.Message = opts.Message;
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
class BillingViewHealthStatusException extends CostExplorerServiceException {
|
|
291
|
+
name = "BillingViewHealthStatusException";
|
|
292
|
+
$fault = "client";
|
|
293
|
+
Message;
|
|
294
|
+
constructor(opts) {
|
|
295
|
+
super({
|
|
296
|
+
name: "BillingViewHealthStatusException",
|
|
297
|
+
$fault: "client",
|
|
298
|
+
...opts,
|
|
299
|
+
});
|
|
300
|
+
Object.setPrototypeOf(this, BillingViewHealthStatusException.prototype);
|
|
301
|
+
this.Message = opts.Message;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
class RequestChangedException extends CostExplorerServiceException {
|
|
305
|
+
name = "RequestChangedException";
|
|
306
|
+
$fault = "client";
|
|
307
|
+
Message;
|
|
308
|
+
constructor(opts) {
|
|
309
|
+
super({
|
|
310
|
+
name: "RequestChangedException",
|
|
311
|
+
$fault: "client",
|
|
312
|
+
...opts,
|
|
313
|
+
});
|
|
314
|
+
Object.setPrototypeOf(this, RequestChangedException.prototype);
|
|
315
|
+
this.Message = opts.Message;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
class UnresolvableUsageUnitException extends CostExplorerServiceException {
|
|
319
|
+
name = "UnresolvableUsageUnitException";
|
|
320
|
+
$fault = "client";
|
|
321
|
+
Message;
|
|
322
|
+
constructor(opts) {
|
|
323
|
+
super({
|
|
324
|
+
name: "UnresolvableUsageUnitException",
|
|
325
|
+
$fault: "client",
|
|
326
|
+
...opts,
|
|
327
|
+
});
|
|
328
|
+
Object.setPrototypeOf(this, UnresolvableUsageUnitException.prototype);
|
|
329
|
+
this.Message = opts.Message;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
class GenerationExistsException extends CostExplorerServiceException {
|
|
333
|
+
name = "GenerationExistsException";
|
|
334
|
+
$fault = "client";
|
|
335
|
+
Message;
|
|
336
|
+
constructor(opts) {
|
|
337
|
+
super({
|
|
338
|
+
name: "GenerationExistsException",
|
|
339
|
+
$fault: "client",
|
|
340
|
+
...opts,
|
|
341
|
+
});
|
|
342
|
+
Object.setPrototypeOf(this, GenerationExistsException.prototype);
|
|
343
|
+
this.Message = opts.Message;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
class BackfillLimitExceededException extends CostExplorerServiceException {
|
|
347
|
+
name = "BackfillLimitExceededException";
|
|
348
|
+
$fault = "client";
|
|
349
|
+
Message;
|
|
350
|
+
constructor(opts) {
|
|
351
|
+
super({
|
|
352
|
+
name: "BackfillLimitExceededException",
|
|
353
|
+
$fault: "client",
|
|
354
|
+
...opts,
|
|
355
|
+
});
|
|
356
|
+
Object.setPrototypeOf(this, BackfillLimitExceededException.prototype);
|
|
357
|
+
this.Message = opts.Message;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
class TooManyTagsException extends CostExplorerServiceException {
|
|
361
|
+
name = "TooManyTagsException";
|
|
362
|
+
$fault = "client";
|
|
363
|
+
Message;
|
|
364
|
+
ResourceName;
|
|
365
|
+
constructor(opts) {
|
|
366
|
+
super({
|
|
367
|
+
name: "TooManyTagsException",
|
|
368
|
+
$fault: "client",
|
|
369
|
+
...opts,
|
|
370
|
+
});
|
|
371
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
372
|
+
this.Message = opts.Message;
|
|
373
|
+
this.ResourceName = opts.ResourceName;
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
const _A = "Anomaly";
|
|
378
|
+
const _AC = "AmortizedCommitment";
|
|
379
|
+
const _ACT = "AnalysisCompletionTime";
|
|
380
|
+
const _AD = "AnalysisDetails";
|
|
381
|
+
const _ADI = "AnomalyDateInterval";
|
|
382
|
+
const _ADp = "ApproximationDimension";
|
|
383
|
+
const _AED = "AnomalyEndDate";
|
|
384
|
+
const _AI = "AnalysisId";
|
|
385
|
+
const _AIc = "AccountId";
|
|
386
|
+
const _AIn = "AnomalyId";
|
|
387
|
+
const _AIna = "AnalysisIds";
|
|
388
|
+
const _AM = "AnomalyMonitor";
|
|
389
|
+
const _AMd = "AdditionalMetadata";
|
|
390
|
+
const _AMn = "AnomalyMonitors";
|
|
391
|
+
const _ANFE = "AnalysisNotFoundException";
|
|
392
|
+
const _ANOCUUPH = "AverageNumberOfCapacityUnitsUsedPerHour";
|
|
393
|
+
const _ANOIUPH = "AverageNumberOfInstancesUsedPerHour";
|
|
394
|
+
const _ANUUPH = "AverageNormalizedUnitsUsedPerHour";
|
|
395
|
+
const _ARC = "AmortizedRecurringCommitment";
|
|
396
|
+
const _ARF = "AmortizedRecurringFee";
|
|
397
|
+
const _AS = "AnalysisSummary";
|
|
398
|
+
const _ASD = "AnomalyStartDate";
|
|
399
|
+
const _ASL = "AnalysisSummaryList";
|
|
400
|
+
const _AST = "AnalysisStartedTime";
|
|
401
|
+
const _ASc = "AccountScope";
|
|
402
|
+
const _ASn = "AnalysisStatus";
|
|
403
|
+
const _ASno = "AnomalyScore";
|
|
404
|
+
const _ASnom = "AnomalySubscription";
|
|
405
|
+
const _ASnoma = "AnomalySubscriptions";
|
|
406
|
+
const _AT = "AnalysisType";
|
|
407
|
+
const _AU = "AverageUtilization";
|
|
408
|
+
const _AUC = "AmortizedUpfrontCommitment";
|
|
409
|
+
const _AUF = "AmortizedUpfrontFee";
|
|
410
|
+
const _AZ = "AvailabilityZone";
|
|
411
|
+
const _Ad = "Address";
|
|
412
|
+
const _Am = "Amount";
|
|
413
|
+
const _An = "And";
|
|
414
|
+
const _Ano = "Anomalies";
|
|
415
|
+
const _At = "Attributes";
|
|
416
|
+
const _BC = "BenefitsConsidered";
|
|
417
|
+
const _BEE = "BillExpirationException";
|
|
418
|
+
const _BF = "BackfillFrom";
|
|
419
|
+
const _BLEE = "BackfillLimitExceededException";
|
|
420
|
+
const _BR = "BackfillRequests";
|
|
421
|
+
const _BRa = "BackfillRequest";
|
|
422
|
+
const _BS = "BackfillStatus";
|
|
423
|
+
const _BTP = "BaselineTimePeriod";
|
|
424
|
+
const _BTPA = "BaselineTimePeriodAmount";
|
|
425
|
+
const _BVA = "BillingViewArn";
|
|
426
|
+
const _BVHSE = "BillingViewHealthStatusException";
|
|
427
|
+
const _C = "Component";
|
|
428
|
+
const _CA = "CompletedAt";
|
|
429
|
+
const _CAC = "CurrentAverageCoverage";
|
|
430
|
+
const _CAHODS = "CurrentAverageHourlyOnDemandSpend";
|
|
431
|
+
const _CAM = "CreateAnomalyMonitor";
|
|
432
|
+
const _CAMR = "CreateAnomalyMonitorRequest";
|
|
433
|
+
const _CAMRr = "CreateAnomalyMonitorResponse";
|
|
434
|
+
const _CAS = "CreateAnomalySubscription";
|
|
435
|
+
const _CASR = "CreateAnomalySubscriptionRequest";
|
|
436
|
+
const _CASRr = "CreateAnomalySubscriptionResponse";
|
|
437
|
+
const _CAT = "CostAllocationTag";
|
|
438
|
+
const _CATBR = "CostAllocationTagBackfillRequest";
|
|
439
|
+
const _CATBRL = "CostAllocationTagBackfillRequestList";
|
|
440
|
+
const _CATL = "CostAllocationTagList";
|
|
441
|
+
const _CATS = "CostAllocationTagsStatus";
|
|
442
|
+
const _CATSE = "CostAllocationTagStatusEntry";
|
|
443
|
+
const _CATSL = "CostAllocationTagStatusList";
|
|
444
|
+
const _CATo = "CostAllocationTags";
|
|
445
|
+
const _CAUC = "CostAndUsageComparison";
|
|
446
|
+
const _CAUCo = "CostAndUsageComparisons";
|
|
447
|
+
const _CAUS = "CostAndUsageSelector";
|
|
448
|
+
const _CBT = "CoverageByTime";
|
|
449
|
+
const _CBTo = "CoveragesByTime";
|
|
450
|
+
const _CC = "CostCategory";
|
|
451
|
+
const _CCA = "CostCategoryArn";
|
|
452
|
+
const _CCCD = "CreateCostCategoryDefinition";
|
|
453
|
+
const _CCCDR = "CreateCostCategoryDefinitionRequest";
|
|
454
|
+
const _CCCDRr = "CreateCostCategoryDefinitionResponse";
|
|
455
|
+
const _CCD = "CostComparisonDriver";
|
|
456
|
+
const _CCDo = "CostComparisonDrivers";
|
|
457
|
+
const _CCIVD = "CostCategoryInheritedValueDimension";
|
|
458
|
+
const _CCN = "CostCategoryName";
|
|
459
|
+
const _CCNo = "CostCategoryNames";
|
|
460
|
+
const _CCPS = "CostCategoryProcessingStatus";
|
|
461
|
+
const _CCPSL = "CostCategoryProcessingStatusList";
|
|
462
|
+
const _CCR = "CostCategoryReference";
|
|
463
|
+
const _CCRA = "CostCategoryResourceAssociation";
|
|
464
|
+
const _CCRAo = "CostCategoryResourceAssociations";
|
|
465
|
+
const _CCRL = "CostCategoryReferencesList";
|
|
466
|
+
const _CCRLo = "CostCategoryRulesList";
|
|
467
|
+
const _CCRo = "CostCategoryRule";
|
|
468
|
+
const _CCRos = "CostCategoryReferences";
|
|
469
|
+
const _CCSCR = "CostCategorySplitChargeRule";
|
|
470
|
+
const _CCSCRL = "CostCategorySplitChargeRulesList";
|
|
471
|
+
const _CCSCRP = "CostCategorySplitChargeRuleParameter";
|
|
472
|
+
const _CCSCRPL = "CostCategorySplitChargeRuleParametersList";
|
|
473
|
+
const _CCV = "CostCategoryValues";
|
|
474
|
+
const _CCo = "CoverageCost";
|
|
475
|
+
const _CCos = "CostCategories";
|
|
476
|
+
const _CCu = "CurrencyCode";
|
|
477
|
+
const _CCur = "CurrentCoverage";
|
|
478
|
+
const _CD = "CreationDate";
|
|
479
|
+
const _CDo = "CostDrivers";
|
|
480
|
+
const _CDos = "CostDriver";
|
|
481
|
+
const _CG = "CurrentGeneration";
|
|
482
|
+
const _CH = "CoverageHours";
|
|
483
|
+
const _CHP = "CoverageHoursPercentage";
|
|
484
|
+
const _CI = "CurrentInstance";
|
|
485
|
+
const _CM = "ComparisonMetrics";
|
|
486
|
+
const _CMHODS = "CurrentMaximumHourlyOnDemandSpend";
|
|
487
|
+
const _CMHODSu = "CurrentMinimumHourlyOnDemandSpend";
|
|
488
|
+
const _CMV = "ComparisonMetricValue";
|
|
489
|
+
const _CNU = "CoverageNormalizedUnits";
|
|
490
|
+
const _CNUP = "CoverageNormalizedUnitsPercentage";
|
|
491
|
+
const _CODS = "CurrentOnDemandSpend";
|
|
492
|
+
const _CP = "CoveragePercentage";
|
|
493
|
+
const _CPAC = "CommitmentPurchaseAnalysisConfiguration";
|
|
494
|
+
const _CS = "CurrentScore";
|
|
495
|
+
const _CSo = "CostSelector";
|
|
496
|
+
const _CTP = "ComparisonTimePeriod";
|
|
497
|
+
const _CTPA = "ComparisonTimePeriodAmount";
|
|
498
|
+
const _CU = "CapacityUnits";
|
|
499
|
+
const _Co = "Coverage";
|
|
500
|
+
const _Cod = "Code";
|
|
501
|
+
const _Con = "Context";
|
|
502
|
+
const _Conf = "Configuration";
|
|
503
|
+
const _Cont = "Contribution";
|
|
504
|
+
const _D = "Difference";
|
|
505
|
+
const _DAM = "DeleteAnomalyMonitor";
|
|
506
|
+
const _DAMR = "DeleteAnomalyMonitorRequest";
|
|
507
|
+
const _DAMRe = "DeleteAnomalyMonitorResponse";
|
|
508
|
+
const _DAS = "DeleteAnomalySubscription";
|
|
509
|
+
const _DASR = "DeleteAnomalySubscriptionRequest";
|
|
510
|
+
const _DASRe = "DeleteAnomalySubscriptionResponse";
|
|
511
|
+
const _DCCD = "DeleteCostCategoryDefinition";
|
|
512
|
+
const _DCCDR = "DeleteCostCategoryDefinitionRequest";
|
|
513
|
+
const _DCCDRe = "DeleteCostCategoryDefinitionResponse";
|
|
514
|
+
const _DCCDRes = "DescribeCostCategoryDefinitionRequest";
|
|
515
|
+
const _DCCDResc = "DescribeCostCategoryDefinitionResponse";
|
|
516
|
+
const _DCCDe = "DescribeCostCategoryDefinition";
|
|
517
|
+
const _DCTP = "DailyCommitmentToPurchase";
|
|
518
|
+
const _DDBCD = "DynamoDBCapacityDetails";
|
|
519
|
+
const _DE = "DatabaseEngine";
|
|
520
|
+
const _DEa = "DatabaseEdition";
|
|
521
|
+
const _DI = "DateInterval";
|
|
522
|
+
const _DK = "DimensionKey";
|
|
523
|
+
const _DM = "DeploymentModel";
|
|
524
|
+
const _DN = "DimensionName";
|
|
525
|
+
const _DO = "DeploymentOption";
|
|
526
|
+
const _DRBPS = "DiskReadBytesPerSecond";
|
|
527
|
+
const _DROPS = "DiskReadOpsPerSecond";
|
|
528
|
+
const _DRU = "DiskResourceUtilization";
|
|
529
|
+
const _DT = "DataType";
|
|
530
|
+
const _DTI = "DefaultTargetInstance";
|
|
531
|
+
const _DUE = "DataUnavailableException";
|
|
532
|
+
const _DV = "DimensionValue";
|
|
533
|
+
const _DVA = "DimensionValueAttributes";
|
|
534
|
+
const _DVC = "DimensionalValueCount";
|
|
535
|
+
const _DVWA = "DimensionValuesWithAttributes";
|
|
536
|
+
const _DVWAL = "DimensionValuesWithAttributesList";
|
|
537
|
+
const _DVe = "DefaultValue";
|
|
538
|
+
const _DVi = "DimensionValues";
|
|
539
|
+
const _DWBPS = "DiskWriteBytesPerSecond";
|
|
540
|
+
const _DWOPS = "DiskWriteOpsPerSecond";
|
|
541
|
+
const _Di = "Dimensions";
|
|
542
|
+
const _Dim = "Dimension";
|
|
543
|
+
const _E = "End";
|
|
544
|
+
const _EAC = "EstimatedAverageCoverage";
|
|
545
|
+
const _EAU = "EstimatedAverageUtilization";
|
|
546
|
+
const _EBEIM = "EstimatedBreakEvenInMonths";
|
|
547
|
+
const _EBSRU = "EBSResourceUtilization";
|
|
548
|
+
const _EC = "ErrorCode";
|
|
549
|
+
const _ECC = "EstimatedCommitmentCost";
|
|
550
|
+
const _ECID = "EC2InstanceDetails";
|
|
551
|
+
const _ECIDl = "ElastiCacheInstanceDetails";
|
|
552
|
+
const _ECRD = "EC2ResourceDetails";
|
|
553
|
+
const _ECRU = "EC2ResourceUtilization";
|
|
554
|
+
const _ECS = "EC2Specification";
|
|
555
|
+
const _ECT = "EstimatedCompletionTime";
|
|
556
|
+
const _ECs = "EstimatedCoverage";
|
|
557
|
+
const _ED = "EndDate";
|
|
558
|
+
const _EE = "EffectiveEnd";
|
|
559
|
+
const _EHC = "ExistingHourlyCommitment";
|
|
560
|
+
const _EMC = "EstimatedMonthlyCost";
|
|
561
|
+
const _EMODC = "EstimatedMonthlyOnDemandCost";
|
|
562
|
+
const _EMS = "EstimatedMonthlySavings";
|
|
563
|
+
const _EMSA = "EstimatedMonthlySavingsAmount";
|
|
564
|
+
const _EMSP = "EstimatedMonthlySavingsPercentage";
|
|
565
|
+
const _ENCU = "EstimatedNewCommitmentUtilization";
|
|
566
|
+
const _EO = "EffectiveOn";
|
|
567
|
+
const _EODC = "EstimatedOnDemandCost";
|
|
568
|
+
const _EODCWCC = "EstimatedOnDemandCostWithCurrentCommitment";
|
|
569
|
+
const _ERBPS = "EbsReadBytesPerSecond";
|
|
570
|
+
const _ERCFLP = "EstimatedReservationCostForLookbackPeriod";
|
|
571
|
+
const _EROI = "EstimatedROI";
|
|
572
|
+
const _EROPS = "EbsReadOpsPerSecond";
|
|
573
|
+
const _ERU = "ExpectedResourceUtilization";
|
|
574
|
+
const _ES = "EffectiveStart";
|
|
575
|
+
const _ESA = "EstimatedSavingsAmount";
|
|
576
|
+
const _ESID = "ESInstanceDetails";
|
|
577
|
+
const _ESP = "EstimatedSavingsPercentage";
|
|
578
|
+
const _ESPC = "EstimatedSPCost";
|
|
579
|
+
const _ETC = "EstimatedTotalCost";
|
|
580
|
+
const _ETMSA = "EstimatedTotalMonthlySavingsAmount";
|
|
581
|
+
const _EV = "EndValue";
|
|
582
|
+
const _EWBPS = "EbsWriteBytesPerSecond";
|
|
583
|
+
const _EWOPS = "EbsWriteOpsPerSecond";
|
|
584
|
+
const _Er = "Errors";
|
|
585
|
+
const _Es = "Estimated";
|
|
586
|
+
const _Ex = "Expression";
|
|
587
|
+
const _Exp = "Expressions";
|
|
588
|
+
const _F = "Feedback";
|
|
589
|
+
const _FR = "ForecastResult";
|
|
590
|
+
const _FRBT = "ForecastResultsByTime";
|
|
591
|
+
const _FRC = "FindingReasonCodes";
|
|
592
|
+
const _Fa = "Family";
|
|
593
|
+
const _Fi = "Filter";
|
|
594
|
+
const _Fr = "Frequency";
|
|
595
|
+
const _G = "Groups";
|
|
596
|
+
const _GA = "GetAnomalies";
|
|
597
|
+
const _GAM = "GetAnomalyMonitors";
|
|
598
|
+
const _GAMR = "GetAnomalyMonitorsRequest";
|
|
599
|
+
const _GAMRe = "GetAnomalyMonitorsResponse";
|
|
600
|
+
const _GAR = "GetAnomaliesRequest";
|
|
601
|
+
const _GARe = "GetAnomaliesResponse";
|
|
602
|
+
const _GAS = "GetAnomalySubscriptions";
|
|
603
|
+
const _GASR = "GetAnomalySubscriptionsRequest";
|
|
604
|
+
const _GASRe = "GetAnomalySubscriptionsResponse";
|
|
605
|
+
const _GAUR = "GetApproximateUsageRecords";
|
|
606
|
+
const _GAURR = "GetApproximateUsageRecordsRequest";
|
|
607
|
+
const _GAURRe = "GetApproximateUsageRecordsResponse";
|
|
608
|
+
const _GB = "GroupBy";
|
|
609
|
+
const _GCAU = "GetCostAndUsage";
|
|
610
|
+
const _GCAUC = "GetCostAndUsageComparisons";
|
|
611
|
+
const _GCAUCR = "GetCostAndUsageComparisonsRequest";
|
|
612
|
+
const _GCAUCRe = "GetCostAndUsageComparisonsResponse";
|
|
613
|
+
const _GCAUR = "GetCostAndUsageRequest";
|
|
614
|
+
const _GCAURe = "GetCostAndUsageResponse";
|
|
615
|
+
const _GCAUWR = "GetCostAndUsageWithResources";
|
|
616
|
+
const _GCAUWRR = "GetCostAndUsageWithResourcesRequest";
|
|
617
|
+
const _GCAUWRRe = "GetCostAndUsageWithResourcesResponse";
|
|
618
|
+
const _GCC = "GetCostCategories";
|
|
619
|
+
const _GCCD = "GetCostComparisonDrivers";
|
|
620
|
+
const _GCCDR = "GetCostComparisonDriversRequest";
|
|
621
|
+
const _GCCDRe = "GetCostComparisonDriversResponse";
|
|
622
|
+
const _GCCR = "GetCostCategoriesRequest";
|
|
623
|
+
const _GCCRe = "GetCostCategoriesResponse";
|
|
624
|
+
const _GCF = "GetCostForecast";
|
|
625
|
+
const _GCFR = "GetCostForecastRequest";
|
|
626
|
+
const _GCFRe = "GetCostForecastResponse";
|
|
627
|
+
const _GCPA = "GetCommitmentPurchaseAnalysis";
|
|
628
|
+
const _GCPAR = "GetCommitmentPurchaseAnalysisRequest";
|
|
629
|
+
const _GCPARe = "GetCommitmentPurchaseAnalysisResponse";
|
|
630
|
+
const _GCT = "GenerationCompletionTime";
|
|
631
|
+
const _GD = "GroupDefinitions";
|
|
632
|
+
const _GDV = "GetDimensionValues";
|
|
633
|
+
const _GDVR = "GetDimensionValuesRequest";
|
|
634
|
+
const _GDVRe = "GetDimensionValuesResponse";
|
|
635
|
+
const _GDr = "GroupDefinition";
|
|
636
|
+
const _GEE = "GenerationExistsException";
|
|
637
|
+
const _GRC = "GetReservationCoverage";
|
|
638
|
+
const _GRCR = "GetReservationCoverageRequest";
|
|
639
|
+
const _GRCRe = "GetReservationCoverageResponse";
|
|
640
|
+
const _GRPR = "GetReservationPurchaseRecommendation";
|
|
641
|
+
const _GRPRR = "GetReservationPurchaseRecommendationRequest";
|
|
642
|
+
const _GRPRRe = "GetReservationPurchaseRecommendationResponse";
|
|
643
|
+
const _GRR = "GetRightsizingRecommendation";
|
|
644
|
+
const _GRRR = "GetRightsizingRecommendationRequest";
|
|
645
|
+
const _GRRRe = "GetRightsizingRecommendationResponse";
|
|
646
|
+
const _GRU = "GetReservationUtilization";
|
|
647
|
+
const _GRUR = "GetReservationUtilizationRequest";
|
|
648
|
+
const _GRURe = "GetReservationUtilizationResponse";
|
|
649
|
+
const _GS = "GenerationSummary";
|
|
650
|
+
const _GSL = "GenerationSummaryList";
|
|
651
|
+
const _GSPC = "GetSavingsPlansCoverage";
|
|
652
|
+
const _GSPCR = "GetSavingsPlansCoverageRequest";
|
|
653
|
+
const _GSPCRe = "GetSavingsPlansCoverageResponse";
|
|
654
|
+
const _GSPPR = "GetSavingsPlansPurchaseRecommendation";
|
|
655
|
+
const _GSPPRD = "GetSavingsPlanPurchaseRecommendationDetails";
|
|
656
|
+
const _GSPPRDR = "GetSavingsPlanPurchaseRecommendationDetailsRequest";
|
|
657
|
+
const _GSPPRDRe = "GetSavingsPlanPurchaseRecommendationDetailsResponse";
|
|
658
|
+
const _GSPPRR = "GetSavingsPlansPurchaseRecommendationRequest";
|
|
659
|
+
const _GSPPRRe = "GetSavingsPlansPurchaseRecommendationResponse";
|
|
660
|
+
const _GSPU = "GetSavingsPlansUtilization";
|
|
661
|
+
const _GSPUD = "GetSavingsPlansUtilizationDetails";
|
|
662
|
+
const _GSPUDR = "GetSavingsPlansUtilizationDetailsRequest";
|
|
663
|
+
const _GSPUDRe = "GetSavingsPlansUtilizationDetailsResponse";
|
|
664
|
+
const _GSPUR = "GetSavingsPlansUtilizationRequest";
|
|
665
|
+
const _GSPURe = "GetSavingsPlansUtilizationResponse";
|
|
666
|
+
const _GST = "GenerationStartedTime";
|
|
667
|
+
const _GSe = "GenerationStatus";
|
|
668
|
+
const _GT = "GenerationTimestamp";
|
|
669
|
+
const _GTR = "GetTagsRequest";
|
|
670
|
+
const _GTRe = "GetTagsResponse";
|
|
671
|
+
const _GTe = "GetTags";
|
|
672
|
+
const _GUF = "GetUsageForecast";
|
|
673
|
+
const _GUFR = "GetUsageForecastRequest";
|
|
674
|
+
const _GUFRe = "GetUsageForecastResponse";
|
|
675
|
+
const _Gr = "Granularity";
|
|
676
|
+
const _Gro = "Group";
|
|
677
|
+
const _HCTP = "HourlyCommitmentToPurchase";
|
|
678
|
+
const _HODR = "HourlyOnDemandRate";
|
|
679
|
+
const _I = "Impact";
|
|
680
|
+
const _IC = "InstanceClass";
|
|
681
|
+
const _ID = "InstanceDetails";
|
|
682
|
+
const _IF = "InstanceFamily";
|
|
683
|
+
const _IN = "InstanceName";
|
|
684
|
+
const _INTE = "InvalidNextTokenException";
|
|
685
|
+
const _IS = "InstanceSize";
|
|
686
|
+
const _IT = "InstanceType";
|
|
687
|
+
const _IV = "InheritedValue";
|
|
688
|
+
const _K = "Key";
|
|
689
|
+
const _Ke = "Keys";
|
|
690
|
+
const _LA = "LinkedAccount";
|
|
691
|
+
const _LAN = "LinkedAccountName";
|
|
692
|
+
const _LBTP = "LookBackTimePeriod";
|
|
693
|
+
const _LCAT = "ListCostAllocationTags";
|
|
694
|
+
const _LCATBH = "ListCostAllocationTagBackfillHistory";
|
|
695
|
+
const _LCATBHR = "ListCostAllocationTagBackfillHistoryRequest";
|
|
696
|
+
const _LCATBHRi = "ListCostAllocationTagBackfillHistoryResponse";
|
|
697
|
+
const _LCATR = "ListCostAllocationTagsRequest";
|
|
698
|
+
const _LCATRi = "ListCostAllocationTagsResponse";
|
|
699
|
+
const _LCCD = "ListCostCategoryDefinitions";
|
|
700
|
+
const _LCCDR = "ListCostCategoryDefinitionsRequest";
|
|
701
|
+
const _LCCDRi = "ListCostCategoryDefinitionsResponse";
|
|
702
|
+
const _LCCRA = "ListCostCategoryResourceAssociations";
|
|
703
|
+
const _LCCRAR = "ListCostCategoryResourceAssociationsRequest";
|
|
704
|
+
const _LCCRARi = "ListCostCategoryResourceAssociationsResponse";
|
|
705
|
+
const _LCPA = "ListCommitmentPurchaseAnalyses";
|
|
706
|
+
const _LCPAR = "ListCommitmentPurchaseAnalysesRequest";
|
|
707
|
+
const _LCPARi = "ListCommitmentPurchaseAnalysesResponse";
|
|
708
|
+
const _LED = "LastEvaluatedDate";
|
|
709
|
+
const _LEE = "LimitExceededException";
|
|
710
|
+
const _LM = "LicenseModel";
|
|
711
|
+
const _LP = "LookbackPeriod";
|
|
712
|
+
const _LPID = "LookbackPeriodInDays";
|
|
713
|
+
const _LPIH = "LookbackPeriodInHours";
|
|
714
|
+
const _LSPPRG = "ListSavingsPlansPurchaseRecommendationGeneration";
|
|
715
|
+
const _LSPPRGR = "ListSavingsPlansPurchaseRecommendationGenerationRequest";
|
|
716
|
+
const _LSPPRGRi = "ListSavingsPlansPurchaseRecommendationGenerationResponse";
|
|
717
|
+
const _LTFR = "ListTagsForResource";
|
|
718
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
719
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
720
|
+
const _LUA = "LastUpdatedAt";
|
|
721
|
+
const _LUD = "LastUpdatedDate";
|
|
722
|
+
const _LUDa = "LastUsedDate";
|
|
723
|
+
const _LUT = "LatestUsageTimestamp";
|
|
724
|
+
const _M = "Message";
|
|
725
|
+
const _MA = "MonitorArn";
|
|
726
|
+
const _MAL = "MonitorArnList";
|
|
727
|
+
const _MC = "MonthlyCost";
|
|
728
|
+
const _MCUP = "MaxCpuUtilizationPercentage";
|
|
729
|
+
const _MD = "MonitorDimension";
|
|
730
|
+
const _MDBID = "MemoryDBInstanceDetails";
|
|
731
|
+
const _MFC = "MetricForComparison";
|
|
732
|
+
const _MI = "MaxImpact";
|
|
733
|
+
const _MMUP = "MaxMemoryUtilizationPercentage";
|
|
734
|
+
const _MN = "MonitorName";
|
|
735
|
+
const _MNOCUUPH = "MinimumNumberOfCapacityUnitsUsedPerHour";
|
|
736
|
+
const _MNOCUUPHa = "MaximumNumberOfCapacityUnitsUsedPerHour";
|
|
737
|
+
const _MNOIUPH = "MinimumNumberOfInstancesUsedPerHour";
|
|
738
|
+
const _MNOIUPHa = "MaximumNumberOfInstancesUsedPerHour";
|
|
739
|
+
const _MNUUPH = "MinimumNormalizedUnitsUsedPerHour";
|
|
740
|
+
const _MNUUPHa = "MaximumNormalizedUnitsUsedPerHour";
|
|
741
|
+
const _MO = "MatchOptions";
|
|
742
|
+
const _MOLP = "MetricsOverLookbackPeriod";
|
|
743
|
+
const _MR = "MaxResults";
|
|
744
|
+
const _MRD = "ModifyRecommendationDetail";
|
|
745
|
+
const _MS = "MonitorSpecification";
|
|
746
|
+
const _MSUP = "MaxStorageUtilizationPercentage";
|
|
747
|
+
const _MSa = "MaxScore";
|
|
748
|
+
const _MT = "MonitorType";
|
|
749
|
+
const _MV = "MeanValue";
|
|
750
|
+
const _MVe = "MetricValue";
|
|
751
|
+
const _Me = "Metrics";
|
|
752
|
+
const _Mem = "Memory";
|
|
753
|
+
const _Met = "Method";
|
|
754
|
+
const _Meta = "Metadata";
|
|
755
|
+
const _Metr = "Metric";
|
|
756
|
+
const _N = "Name";
|
|
757
|
+
const _NIBPS = "NetworkInBytesPerSecond";
|
|
758
|
+
const _NO = "NumericOperator";
|
|
759
|
+
const _NOBPS = "NetworkOutBytesPerSecond";
|
|
760
|
+
const _NOR = "NumberOfRules";
|
|
761
|
+
const _NP = "NetworkPerformance";
|
|
762
|
+
const _NPIPS = "NetworkPacketsInPerSecond";
|
|
763
|
+
const _NPOPS = "NetworkPacketsOutPerSecond";
|
|
764
|
+
const _NPT = "NextPageToken";
|
|
765
|
+
const _NRIS = "NetRISavings";
|
|
766
|
+
const _NRU = "NetworkResourceUtilization";
|
|
767
|
+
const _NS = "NetSavings";
|
|
768
|
+
const _NT = "NodeType";
|
|
769
|
+
const _NTe = "NextToken";
|
|
770
|
+
const _No = "Not";
|
|
771
|
+
const _O = "Or";
|
|
772
|
+
const _OC = "OfferingClass";
|
|
773
|
+
const _ODC = "OnDemandCost";
|
|
774
|
+
const _ODCE = "OnDemandCostEquivalent";
|
|
775
|
+
const _ODCORIHU = "OnDemandCostOfRIHoursUsed";
|
|
776
|
+
const _ODH = "OnDemandHours";
|
|
777
|
+
const _ODHILP = "OnDemandHoursInLookbackPeriod";
|
|
778
|
+
const _ODNU = "OnDemandNormalizedUnits";
|
|
779
|
+
const _OI = "OfferingId";
|
|
780
|
+
const _P = "Parameters";
|
|
781
|
+
const _PAF = "ProvideAnomalyFeedback";
|
|
782
|
+
const _PAFR = "ProvideAnomalyFeedbackRequest";
|
|
783
|
+
const _PAFRr = "ProvideAnomalyFeedbackResponse";
|
|
784
|
+
const _PD = "ProductDescription";
|
|
785
|
+
const _PDl = "PlatformDifferences";
|
|
786
|
+
const _PH = "PurchasedHours";
|
|
787
|
+
const _PIL = "PredictionIntervalLevel";
|
|
788
|
+
const _PILB = "PredictionIntervalLowerBound";
|
|
789
|
+
const _PIUB = "PredictionIntervalUpperBound";
|
|
790
|
+
const _PO = "PaymentOption";
|
|
791
|
+
const _PS = "ProcessingStatus";
|
|
792
|
+
const _PSa = "PageSize";
|
|
793
|
+
const _PU = "PurchasedUnits";
|
|
794
|
+
const _Pl = "Platform";
|
|
795
|
+
const _R = "Rules";
|
|
796
|
+
const _RA = "RequestedAt";
|
|
797
|
+
const _RAe = "ResourceArn";
|
|
798
|
+
const _RAes = "ReservationAggregates";
|
|
799
|
+
const _RBT = "ResultsByTime";
|
|
800
|
+
const _RBTe = "ResultByTime";
|
|
801
|
+
const _RC = "RootCauses";
|
|
802
|
+
const _RCD = "ReservedCapacityDetails";
|
|
803
|
+
const _RCE = "RequestChangedException";
|
|
804
|
+
const _RCG = "ReservationCoverageGroup";
|
|
805
|
+
const _RCGe = "ReservationCoverageGroups";
|
|
806
|
+
const _RCHILP = "ReservationCoveredHoursInLookbackPeriod";
|
|
807
|
+
const _RCI = "RootCauseImpact";
|
|
808
|
+
const _RCo = "RootCause";
|
|
809
|
+
const _RD = "ResourceDetails";
|
|
810
|
+
const _RDD = "RecommendationDetailData";
|
|
811
|
+
const _RDHM = "RecommendationDetailHourlyMetrics";
|
|
812
|
+
const _RDI = "RecommendationDetailId";
|
|
813
|
+
const _RDSID = "RDSInstanceDetails";
|
|
814
|
+
const _RDe = "RecommendationDetails";
|
|
815
|
+
const _RH = "ReservedHours";
|
|
816
|
+
const _RI = "ResourceId";
|
|
817
|
+
const _RICFUH = "RICostForUnusedHours";
|
|
818
|
+
const _RID = "RedshiftInstanceDetails";
|
|
819
|
+
const _RIe = "RecommendationId";
|
|
820
|
+
const _RIec = "RecommendationIds";
|
|
821
|
+
const _RN = "ResourceName";
|
|
822
|
+
const _RNFE = "ResourceNotFoundException";
|
|
823
|
+
const _RNOCUTP = "RecommendedNumberOfCapacityUnitsToPurchase";
|
|
824
|
+
const _RNOITP = "RecommendedNumberOfInstancesToPurchase";
|
|
825
|
+
const _RNU = "ReservedNormalizedUnits";
|
|
826
|
+
const _RNUTP = "RecommendedNormalizedUnitsToPurchase";
|
|
827
|
+
const _RPR = "ReservationPurchaseRecommendation";
|
|
828
|
+
const _RPRD = "ReservationPurchaseRecommendationDetail";
|
|
829
|
+
const _RPRDe = "ReservationPurchaseRecommendationDetails";
|
|
830
|
+
const _RPRM = "ReservationPurchaseRecommendationMetadata";
|
|
831
|
+
const _RPRS = "ReservationPurchaseRecommendationSummary";
|
|
832
|
+
const _RPRe = "ReservationPurchaseRecommendations";
|
|
833
|
+
const _RR = "RightsizingRecommendations";
|
|
834
|
+
const _RRC = "RightsizingRecommendationConfiguration";
|
|
835
|
+
const _RRL = "RightsizingRecommendationList";
|
|
836
|
+
const _RRM = "RightsizingRecommendationMetadata";
|
|
837
|
+
const _RRS = "RightsizingRecommendationSummary";
|
|
838
|
+
const _RRi = "RightsizingRecommendation";
|
|
839
|
+
const _RS = "ReturnSize";
|
|
840
|
+
const _RSMC = "RecurringStandardMonthlyCost";
|
|
841
|
+
const _RSe = "RealizedSavings";
|
|
842
|
+
const _RSec = "RecommendationSummary";
|
|
843
|
+
const _RT = "ResourceTags";
|
|
844
|
+
const _RTK = "ResourceTagKeys";
|
|
845
|
+
const _RTL = "ResourceTagList";
|
|
846
|
+
const _RTe = "ResourceTag";
|
|
847
|
+
const _RTec = "RecommendationTarget";
|
|
848
|
+
const _RTi = "RightsizingType";
|
|
849
|
+
const _RU = "ResourceUtilization";
|
|
850
|
+
const _RUG = "ReservationUtilizationGroup";
|
|
851
|
+
const _RUGe = "ReservationUtilizationGroups";
|
|
852
|
+
const _RV = "RuleVersion";
|
|
853
|
+
const _Re = "Region";
|
|
854
|
+
const _Rec = "Recommendations";
|
|
855
|
+
const _Ru = "Rule";
|
|
856
|
+
const _S = "Subscribers";
|
|
857
|
+
const _SA = "SubscriptionArn";
|
|
858
|
+
const _SAL = "SubscriptionArnList";
|
|
859
|
+
const _SB = "SortBy";
|
|
860
|
+
const _SCATB = "StartCostAllocationTagBackfill";
|
|
861
|
+
const _SCATBR = "StartCostAllocationTagBackfillRequest";
|
|
862
|
+
const _SCATBRt = "StartCostAllocationTagBackfillResponse";
|
|
863
|
+
const _SCBSP = "SpendCoveredBySavingsPlans";
|
|
864
|
+
const _SCC = "SavingsCurrencyCode";
|
|
865
|
+
const _SCPA = "StartCommitmentPurchaseAnalysis";
|
|
866
|
+
const _SCPAR = "StartCommitmentPurchaseAnalysisRequest";
|
|
867
|
+
const _SCPARt = "StartCommitmentPurchaseAnalysisResponse";
|
|
868
|
+
const _SCR = "SplitChargeRules";
|
|
869
|
+
const _SD = "StartDate";
|
|
870
|
+
const _SDo = "SortDefinition";
|
|
871
|
+
const _SDor = "SortDefinitions";
|
|
872
|
+
const _SFE = "SizeFlexEligible";
|
|
873
|
+
const _SN = "SubscriptionName";
|
|
874
|
+
const _SO = "SortOrder";
|
|
875
|
+
const _SP = "SavingsPercentage";
|
|
876
|
+
const _SPA = "SavingsPlanArn";
|
|
877
|
+
const _SPAC = "SavingsPlansAmortizedCommitment";
|
|
878
|
+
const _SPC = "SavingsPlansCoverages";
|
|
879
|
+
const _SPCD = "SavingsPlansCoverageData";
|
|
880
|
+
const _SPCHILP = "SavingsPlansCoveredHoursInLookbackPeriod";
|
|
881
|
+
const _SPCa = "SavingsPlansCommitment";
|
|
882
|
+
const _SPCav = "SavingsPlansCoverage";
|
|
883
|
+
const _SPD = "SavingsPlansDetails";
|
|
884
|
+
const _SPPAC = "SavingsPlansPurchaseAnalysisConfiguration";
|
|
885
|
+
const _SPPAD = "SavingsPlansPurchaseAnalysisDetails";
|
|
886
|
+
const _SPPR = "SavingsPlansPurchaseRecommendation";
|
|
887
|
+
const _SPPRD = "SavingsPlansPurchaseRecommendationDetails";
|
|
888
|
+
const _SPPRDL = "SavingsPlansPurchaseRecommendationDetailList";
|
|
889
|
+
const _SPPRDa = "SavingsPlansPurchaseRecommendationDetail";
|
|
890
|
+
const _SPPRM = "SavingsPlansPurchaseRecommendationMetadata";
|
|
891
|
+
const _SPPRS = "SavingsPlansPurchaseRecommendationSummary";
|
|
892
|
+
const _SPS = "SavingsPlansSavings";
|
|
893
|
+
const _SPT = "SavingsPlansType";
|
|
894
|
+
const _SPTA = "SavingsPlansToAdd";
|
|
895
|
+
const _SPTC = "SavingsPlansTargetCoverage";
|
|
896
|
+
const _SPTE = "SavingsPlansToExclude";
|
|
897
|
+
const _SPU = "SavingsPlansUtilization";
|
|
898
|
+
const _SPUA = "SavingsPlansUtilizationAggregates";
|
|
899
|
+
const _SPUBT = "SavingsPlansUtilizationsByTime";
|
|
900
|
+
const _SPUBTa = "SavingsPlansUtilizationByTime";
|
|
901
|
+
const _SPUD = "SavingsPlansUtilizationDetails";
|
|
902
|
+
const _SPUDa = "SavingsPlansUtilizationDetail";
|
|
903
|
+
const _SPa = "SavingsPlans";
|
|
904
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
905
|
+
const _SRT = "SupportedResourceTypes";
|
|
906
|
+
const _SS = "SearchString";
|
|
907
|
+
const _SSPPRG = "StartSavingsPlansPurchaseRecommendationGeneration";
|
|
908
|
+
const _SSPPRGR = "StartSavingsPlansPurchaseRecommendationGenerationRequest";
|
|
909
|
+
const _SSPPRGRt = "StartSavingsPlansPurchaseRecommendationGenerationResponse";
|
|
910
|
+
const _SSe = "ServiceSpecification";
|
|
911
|
+
const _ST = "StartTime";
|
|
912
|
+
const _SV = "StartValue";
|
|
913
|
+
const _Sa = "Savings";
|
|
914
|
+
const _Se = "Services";
|
|
915
|
+
const _Ser = "Service";
|
|
916
|
+
const _Sk = "Sku";
|
|
917
|
+
const _So = "Source";
|
|
918
|
+
const _St = "Status";
|
|
919
|
+
const _Sta = "Start";
|
|
920
|
+
const _Sto = "Storage";
|
|
921
|
+
const _Su = "Summary";
|
|
922
|
+
const _Sub = "Subscriber";
|
|
923
|
+
const _T = "Threshold";
|
|
924
|
+
const _TAC = "TotalAmortizedCommitment";
|
|
925
|
+
const _TAF = "TotalAmortizedFee";
|
|
926
|
+
const _TAH = "TotalActualHours";
|
|
927
|
+
const _TAS = "TotalActualSpend";
|
|
928
|
+
const _TAU = "TotalActualUnits";
|
|
929
|
+
const _TC = "TotalCost";
|
|
930
|
+
const _TCAU = "TotalCostAndUsage";
|
|
931
|
+
const _TCo = "TotalCommitment";
|
|
932
|
+
const _TE = "ThresholdExpression";
|
|
933
|
+
const _TEMSA = "TotalEstimatedMonthlySavingsAmount";
|
|
934
|
+
const _TEMSP = "TotalEstimatedMonthlySavingsPercentage";
|
|
935
|
+
const _TES = "TotalExpectedSpend";
|
|
936
|
+
const _TI = "TotalImpact";
|
|
937
|
+
const _TIF = "TotalImpactFilter";
|
|
938
|
+
const _TIL = "TargetInstancesList";
|
|
939
|
+
const _TIP = "TotalImpactPercentage";
|
|
940
|
+
const _TIY = "TermInYears";
|
|
941
|
+
const _TIa = "TargetInstances";
|
|
942
|
+
const _TIar = "TargetInstance";
|
|
943
|
+
const _TK = "TagKey";
|
|
944
|
+
const _TKa = "TagKeys";
|
|
945
|
+
const _TMTE = "TooManyTagsException";
|
|
946
|
+
const _TP = "TimePeriod";
|
|
947
|
+
const _TPRIS = "TotalPotentialRISavings";
|
|
948
|
+
const _TR = "TotalRecords";
|
|
949
|
+
const _TRC = "TotalRecommendationCount";
|
|
950
|
+
const _TRD = "TerminateRecommendationDetail";
|
|
951
|
+
const _TRH = "TotalRunningHours";
|
|
952
|
+
const _TRHILP = "TotalRunningHoursInLookbackPeriod";
|
|
953
|
+
const _TRNU = "TotalRunningNormalizedUnits";
|
|
954
|
+
const _TRR = "TagResourceRequest";
|
|
955
|
+
const _TRRa = "TagResourceResponse";
|
|
956
|
+
const _TRa = "TagResource";
|
|
957
|
+
const _TS = "TotalSize";
|
|
958
|
+
const _TV = "TagValues";
|
|
959
|
+
const _TVL = "TagValuesList";
|
|
960
|
+
const _Ta = "Targets";
|
|
961
|
+
const _Tag = "Tags";
|
|
962
|
+
const _Te = "Tenancy";
|
|
963
|
+
const _To = "Total";
|
|
964
|
+
const _Ty = "Type";
|
|
965
|
+
const _U = "Unit";
|
|
966
|
+
const _UAM = "UpdateAnomalyMonitor";
|
|
967
|
+
const _UAMR = "UpdateAnomalyMonitorRequest";
|
|
968
|
+
const _UAMRp = "UpdateAnomalyMonitorResponse";
|
|
969
|
+
const _UAS = "UpdateAnomalySubscription";
|
|
970
|
+
const _UASR = "UpdateAnomalySubscriptionRequest";
|
|
971
|
+
const _UASRp = "UpdateAnomalySubscriptionResponse";
|
|
972
|
+
const _UBT = "UtilizationsByTime";
|
|
973
|
+
const _UBTt = "UtilizationByTime";
|
|
974
|
+
const _UC = "UpfrontCost";
|
|
975
|
+
const _UCATS = "UpdateCostAllocationTagsStatus";
|
|
976
|
+
const _UCATSE = "UpdateCostAllocationTagsStatusError";
|
|
977
|
+
const _UCATSEp = "UpdateCostAllocationTagsStatusErrors";
|
|
978
|
+
const _UCATSR = "UpdateCostAllocationTagsStatusRequest";
|
|
979
|
+
const _UCATSRp = "UpdateCostAllocationTagsStatusResponse";
|
|
980
|
+
const _UCCD = "UpdateCostCategoryDefinition";
|
|
981
|
+
const _UCCDR = "UpdateCostCategoryDefinitionRequest";
|
|
982
|
+
const _UCCDRp = "UpdateCostCategoryDefinitionResponse";
|
|
983
|
+
const _UCn = "UnusedCommitment";
|
|
984
|
+
const _UCs = "UsedCommitment";
|
|
985
|
+
const _UH = "UnusedHours";
|
|
986
|
+
const _UME = "UnknownMonitorException";
|
|
987
|
+
const _UP = "UtilizationPercentage";
|
|
988
|
+
const _UPIU = "UtilizationPercentageInUnits";
|
|
989
|
+
const _UR = "UntagResource";
|
|
990
|
+
const _URR = "UntagResourceRequest";
|
|
991
|
+
const _URRn = "UntagResourceResponse";
|
|
992
|
+
const _US = "UnrealizedSavings";
|
|
993
|
+
const _USE = "UnknownSubscriptionException";
|
|
994
|
+
const _UT = "UsageType";
|
|
995
|
+
const _UU = "UnusedUnits";
|
|
996
|
+
const _UUUE = "UnresolvableUsageUnitException";
|
|
997
|
+
const _Ut = "Utilization";
|
|
998
|
+
const _V = "Values";
|
|
999
|
+
const _Va = "Value";
|
|
1000
|
+
const _Vc = "Vcpu";
|
|
1001
|
+
const _c = "client";
|
|
1002
|
+
const _e = "error";
|
|
1003
|
+
const _hE = "httpError";
|
|
1004
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.costexplorer";
|
|
1005
|
+
const n0 = "com.amazonaws.costexplorer";
|
|
1006
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1007
|
+
var CostExplorerServiceException$ = [-3, _s, "CostExplorerServiceException", 0, [], []];
|
|
1008
|
+
_s_registry.registerError(CostExplorerServiceException$, CostExplorerServiceException);
|
|
1009
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1010
|
+
var AnalysisNotFoundException$ = [-3, n0, _ANFE,
|
|
1011
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1012
|
+
[_M],
|
|
1013
|
+
[0]
|
|
1014
|
+
];
|
|
1015
|
+
n0_registry.registerError(AnalysisNotFoundException$, AnalysisNotFoundException);
|
|
1016
|
+
var BackfillLimitExceededException$ = [-3, n0, _BLEE,
|
|
1017
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1018
|
+
[_M],
|
|
1019
|
+
[0]
|
|
1020
|
+
];
|
|
1021
|
+
n0_registry.registerError(BackfillLimitExceededException$, BackfillLimitExceededException);
|
|
1022
|
+
var BillExpirationException$ = [-3, n0, _BEE,
|
|
1023
|
+
{ [_e]: _c },
|
|
1024
|
+
[_M],
|
|
1025
|
+
[0]
|
|
1026
|
+
];
|
|
1027
|
+
n0_registry.registerError(BillExpirationException$, BillExpirationException);
|
|
1028
|
+
var BillingViewHealthStatusException$ = [-3, n0, _BVHSE,
|
|
1029
|
+
{ [_e]: _c },
|
|
1030
|
+
[_M],
|
|
1031
|
+
[0]
|
|
1032
|
+
];
|
|
1033
|
+
n0_registry.registerError(BillingViewHealthStatusException$, BillingViewHealthStatusException);
|
|
1034
|
+
var DataUnavailableException$ = [-3, n0, _DUE,
|
|
1035
|
+
{ [_e]: _c },
|
|
1036
|
+
[_M],
|
|
1037
|
+
[0]
|
|
1038
|
+
];
|
|
1039
|
+
n0_registry.registerError(DataUnavailableException$, DataUnavailableException);
|
|
1040
|
+
var GenerationExistsException$ = [-3, n0, _GEE,
|
|
1041
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1042
|
+
[_M],
|
|
1043
|
+
[0]
|
|
1044
|
+
];
|
|
1045
|
+
n0_registry.registerError(GenerationExistsException$, GenerationExistsException);
|
|
1046
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1047
|
+
{ [_e]: _c },
|
|
1048
|
+
[_M],
|
|
1049
|
+
[0]
|
|
1050
|
+
];
|
|
1051
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1052
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1053
|
+
{ [_e]: _c },
|
|
1054
|
+
[_M],
|
|
1055
|
+
[0]
|
|
1056
|
+
];
|
|
1057
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1058
|
+
var RequestChangedException$ = [-3, n0, _RCE,
|
|
1059
|
+
{ [_e]: _c },
|
|
1060
|
+
[_M],
|
|
1061
|
+
[0]
|
|
1062
|
+
];
|
|
1063
|
+
n0_registry.registerError(RequestChangedException$, RequestChangedException);
|
|
1064
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1065
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1066
|
+
[_M, _RN],
|
|
1067
|
+
[0, 0]
|
|
1068
|
+
];
|
|
1069
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1070
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1071
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1072
|
+
[_M],
|
|
1073
|
+
[0]
|
|
1074
|
+
];
|
|
1075
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1076
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1077
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1078
|
+
[_M, _RN],
|
|
1079
|
+
[0, 0]
|
|
1080
|
+
];
|
|
1081
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
1082
|
+
var UnknownMonitorException$ = [-3, n0, _UME,
|
|
1083
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1084
|
+
[_M],
|
|
1085
|
+
[0]
|
|
1086
|
+
];
|
|
1087
|
+
n0_registry.registerError(UnknownMonitorException$, UnknownMonitorException);
|
|
1088
|
+
var UnknownSubscriptionException$ = [-3, n0, _USE,
|
|
1089
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1090
|
+
[_M],
|
|
1091
|
+
[0]
|
|
1092
|
+
];
|
|
1093
|
+
n0_registry.registerError(UnknownSubscriptionException$, UnknownSubscriptionException);
|
|
1094
|
+
var UnresolvableUsageUnitException$ = [-3, n0, _UUUE,
|
|
1095
|
+
{ [_e]: _c },
|
|
1096
|
+
[_M],
|
|
1097
|
+
[0]
|
|
1098
|
+
];
|
|
1099
|
+
n0_registry.registerError(UnresolvableUsageUnitException$, UnresolvableUsageUnitException);
|
|
1100
|
+
const errorTypeRegistries = [
|
|
1101
|
+
_s_registry,
|
|
1102
|
+
n0_registry,
|
|
1103
|
+
];
|
|
1104
|
+
var AnalysisDetails$ = [3, n0, _AD,
|
|
1105
|
+
0,
|
|
1106
|
+
[_SPPAD],
|
|
1107
|
+
[() => SavingsPlansPurchaseAnalysisDetails$]
|
|
1108
|
+
];
|
|
1109
|
+
var AnalysisSummary$ = [3, n0, _AS,
|
|
1110
|
+
0,
|
|
1111
|
+
[_ECT, _ACT, _AST, _ASn, _EC, _AI, _CPAC],
|
|
1112
|
+
[0, 0, 0, 0, 0, 0, () => CommitmentPurchaseAnalysisConfiguration$]
|
|
1113
|
+
];
|
|
1114
|
+
var Anomaly$ = [3, n0, _A,
|
|
1115
|
+
0,
|
|
1116
|
+
[_AIn, _ASno, _I, _MA, _ASD, _AED, _DV, _RC, _F],
|
|
1117
|
+
[0, () => AnomalyScore$, () => Impact$, 0, 0, 0, 0, () => RootCauses, 0], 4
|
|
1118
|
+
];
|
|
1119
|
+
var AnomalyDateInterval$ = [3, n0, _ADI,
|
|
1120
|
+
0,
|
|
1121
|
+
[_SD, _ED],
|
|
1122
|
+
[0, 0], 1
|
|
1123
|
+
];
|
|
1124
|
+
var AnomalyMonitor$ = [3, n0, _AM,
|
|
1125
|
+
0,
|
|
1126
|
+
[_MN, _MT, _MA, _CD, _LUD, _LED, _MD, _MS, _DVC],
|
|
1127
|
+
[0, 0, 0, 0, 0, 0, 0, () => Expression$, 1], 2
|
|
1128
|
+
];
|
|
1129
|
+
var AnomalyScore$ = [3, n0, _ASno,
|
|
1130
|
+
0,
|
|
1131
|
+
[_MSa, _CS],
|
|
1132
|
+
[1, 1], 2
|
|
1133
|
+
];
|
|
1134
|
+
var AnomalySubscription$ = [3, n0, _ASnom,
|
|
1135
|
+
0,
|
|
1136
|
+
[_MAL, _S, _Fr, _SN, _SA, _AIc, _T, _TE],
|
|
1137
|
+
[64 | 0, () => Subscribers, 0, 0, 0, 0, 1, () => Expression$], 4
|
|
1138
|
+
];
|
|
1139
|
+
var CommitmentPurchaseAnalysisConfiguration$ = [3, n0, _CPAC,
|
|
1140
|
+
0,
|
|
1141
|
+
[_SPPAC],
|
|
1142
|
+
[() => SavingsPlansPurchaseAnalysisConfiguration$]
|
|
1143
|
+
];
|
|
1144
|
+
var ComparisonMetricValue$ = [3, n0, _CMV,
|
|
1145
|
+
0,
|
|
1146
|
+
[_BTPA, _CTPA, _D, _U],
|
|
1147
|
+
[0, 0, 0, 0]
|
|
1148
|
+
];
|
|
1149
|
+
var CostAllocationTag$ = [3, n0, _CAT,
|
|
1150
|
+
0,
|
|
1151
|
+
[_TK, _Ty, _St, _LUD, _LUDa],
|
|
1152
|
+
[0, 0, 0, 0, 0], 3
|
|
1153
|
+
];
|
|
1154
|
+
var CostAllocationTagBackfillRequest$ = [3, n0, _CATBR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_BF, _RA, _CA, _BS, _LUA],
|
|
1157
|
+
[0, 0, 0, 0, 0]
|
|
1158
|
+
];
|
|
1159
|
+
var CostAllocationTagStatusEntry$ = [3, n0, _CATSE,
|
|
1160
|
+
0,
|
|
1161
|
+
[_TK, _St],
|
|
1162
|
+
[0, 0], 2
|
|
1163
|
+
];
|
|
1164
|
+
var CostAndUsageComparison$ = [3, n0, _CAUC,
|
|
1165
|
+
0,
|
|
1166
|
+
[_CAUS, _Me],
|
|
1167
|
+
[() => Expression$, () => ComparisonMetrics]
|
|
1168
|
+
];
|
|
1169
|
+
var CostCategory$ = [3, n0, _CC,
|
|
1170
|
+
0,
|
|
1171
|
+
[_CCA, _ES, _N, _RV, _R, _EE, _SCR, _PS, _DVe],
|
|
1172
|
+
[0, 0, 0, 0, () => CostCategoryRulesList, 0, () => CostCategorySplitChargeRulesList, () => CostCategoryProcessingStatusList, 0], 5
|
|
1173
|
+
];
|
|
1174
|
+
var CostCategoryInheritedValueDimension$ = [3, n0, _CCIVD,
|
|
1175
|
+
0,
|
|
1176
|
+
[_DN, _DK],
|
|
1177
|
+
[0, 0]
|
|
1178
|
+
];
|
|
1179
|
+
var CostCategoryProcessingStatus$ = [3, n0, _CCPS,
|
|
1180
|
+
0,
|
|
1181
|
+
[_C, _St],
|
|
1182
|
+
[0, 0]
|
|
1183
|
+
];
|
|
1184
|
+
var CostCategoryReference$ = [3, n0, _CCR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_CCA, _N, _ES, _EE, _NOR, _PS, _V, _DVe, _SRT],
|
|
1187
|
+
[0, 0, 0, 0, 1, () => CostCategoryProcessingStatusList, 64 | 0, 0, 64 | 0]
|
|
1188
|
+
];
|
|
1189
|
+
var CostCategoryResourceAssociation$ = [3, n0, _CCRA,
|
|
1190
|
+
0,
|
|
1191
|
+
[_RAe, _CCN, _CCA],
|
|
1192
|
+
[0, 0, 0]
|
|
1193
|
+
];
|
|
1194
|
+
var CostCategoryRule$ = [3, n0, _CCRo,
|
|
1195
|
+
0,
|
|
1196
|
+
[_Va, _Ru, _IV, _Ty],
|
|
1197
|
+
[0, () => Expression$, () => CostCategoryInheritedValueDimension$, 0]
|
|
1198
|
+
];
|
|
1199
|
+
var CostCategorySplitChargeRule$ = [3, n0, _CCSCR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_So, _Ta, _Met, _P],
|
|
1202
|
+
[0, 64 | 0, 0, () => CostCategorySplitChargeRuleParametersList], 3
|
|
1203
|
+
];
|
|
1204
|
+
var CostCategorySplitChargeRuleParameter$ = [3, n0, _CCSCRP,
|
|
1205
|
+
0,
|
|
1206
|
+
[_Ty, _V],
|
|
1207
|
+
[0, 64 | 0], 2
|
|
1208
|
+
];
|
|
1209
|
+
var CostCategoryValues$ = [3, n0, _CCV,
|
|
1210
|
+
0,
|
|
1211
|
+
[_K, _V, _MO],
|
|
1212
|
+
[0, 64 | 0, 64 | 0]
|
|
1213
|
+
];
|
|
1214
|
+
var CostComparisonDriver$ = [3, n0, _CCD,
|
|
1215
|
+
0,
|
|
1216
|
+
[_CSo, _Me, _CDo],
|
|
1217
|
+
[() => Expression$, () => ComparisonMetrics, () => CostDrivers]
|
|
1218
|
+
];
|
|
1219
|
+
var CostDriver$ = [3, n0, _CDos,
|
|
1220
|
+
0,
|
|
1221
|
+
[_Ty, _N, _Me],
|
|
1222
|
+
[0, 0, () => ComparisonMetrics]
|
|
1223
|
+
];
|
|
1224
|
+
var Coverage$ = [3, n0, _Co,
|
|
1225
|
+
0,
|
|
1226
|
+
[_CH, _CNU, _CCo],
|
|
1227
|
+
[() => CoverageHours$, () => CoverageNormalizedUnits$, () => CoverageCost$]
|
|
1228
|
+
];
|
|
1229
|
+
var CoverageByTime$ = [3, n0, _CBT,
|
|
1230
|
+
0,
|
|
1231
|
+
[_TP, _G, _To],
|
|
1232
|
+
[() => DateInterval$, () => ReservationCoverageGroups, () => Coverage$]
|
|
1233
|
+
];
|
|
1234
|
+
var CoverageCost$ = [3, n0, _CCo,
|
|
1235
|
+
0,
|
|
1236
|
+
[_ODC],
|
|
1237
|
+
[0]
|
|
1238
|
+
];
|
|
1239
|
+
var CoverageHours$ = [3, n0, _CH,
|
|
1240
|
+
0,
|
|
1241
|
+
[_ODH, _RH, _TRH, _CHP],
|
|
1242
|
+
[0, 0, 0, 0]
|
|
1243
|
+
];
|
|
1244
|
+
var CoverageNormalizedUnits$ = [3, n0, _CNU,
|
|
1245
|
+
0,
|
|
1246
|
+
[_ODNU, _RNU, _TRNU, _CNUP],
|
|
1247
|
+
[0, 0, 0, 0]
|
|
1248
|
+
];
|
|
1249
|
+
var CreateAnomalyMonitorRequest$ = [3, n0, _CAMR,
|
|
1250
|
+
0,
|
|
1251
|
+
[_AM, _RT],
|
|
1252
|
+
[() => AnomalyMonitor$, () => ResourceTagList], 1
|
|
1253
|
+
];
|
|
1254
|
+
var CreateAnomalyMonitorResponse$ = [3, n0, _CAMRr,
|
|
1255
|
+
0,
|
|
1256
|
+
[_MA],
|
|
1257
|
+
[0], 1
|
|
1258
|
+
];
|
|
1259
|
+
var CreateAnomalySubscriptionRequest$ = [3, n0, _CASR,
|
|
1260
|
+
0,
|
|
1261
|
+
[_ASnom, _RT],
|
|
1262
|
+
[() => AnomalySubscription$, () => ResourceTagList], 1
|
|
1263
|
+
];
|
|
1264
|
+
var CreateAnomalySubscriptionResponse$ = [3, n0, _CASRr,
|
|
1265
|
+
0,
|
|
1266
|
+
[_SA],
|
|
1267
|
+
[0], 1
|
|
1268
|
+
];
|
|
1269
|
+
var CreateCostCategoryDefinitionRequest$ = [3, n0, _CCCDR,
|
|
1270
|
+
0,
|
|
1271
|
+
[_N, _RV, _R, _ES, _DVe, _SCR, _RT],
|
|
1272
|
+
[0, 0, () => CostCategoryRulesList, 0, 0, () => CostCategorySplitChargeRulesList, () => ResourceTagList], 3
|
|
1273
|
+
];
|
|
1274
|
+
var CreateCostCategoryDefinitionResponse$ = [3, n0, _CCCDRr,
|
|
1275
|
+
0,
|
|
1276
|
+
[_CCA, _ES],
|
|
1277
|
+
[0, 0]
|
|
1278
|
+
];
|
|
1279
|
+
var CurrentInstance$ = [3, n0, _CI,
|
|
1280
|
+
0,
|
|
1281
|
+
[_RI, _IN, _Tag, _RD, _RU, _RCHILP, _SPCHILP, _ODHILP, _TRHILP, _MC, _CCu],
|
|
1282
|
+
[0, 0, () => TagValuesList, () => ResourceDetails$, () => ResourceUtilization$, 0, 0, 0, 0, 0, 0]
|
|
1283
|
+
];
|
|
1284
|
+
var DateInterval$ = [3, n0, _DI,
|
|
1285
|
+
0,
|
|
1286
|
+
[_Sta, _E],
|
|
1287
|
+
[0, 0], 2
|
|
1288
|
+
];
|
|
1289
|
+
var DeleteAnomalyMonitorRequest$ = [3, n0, _DAMR,
|
|
1290
|
+
0,
|
|
1291
|
+
[_MA],
|
|
1292
|
+
[0], 1
|
|
1293
|
+
];
|
|
1294
|
+
var DeleteAnomalyMonitorResponse$ = [3, n0, _DAMRe,
|
|
1295
|
+
0,
|
|
1296
|
+
[],
|
|
1297
|
+
[]
|
|
1298
|
+
];
|
|
1299
|
+
var DeleteAnomalySubscriptionRequest$ = [3, n0, _DASR,
|
|
1300
|
+
0,
|
|
1301
|
+
[_SA],
|
|
1302
|
+
[0], 1
|
|
1303
|
+
];
|
|
1304
|
+
var DeleteAnomalySubscriptionResponse$ = [3, n0, _DASRe,
|
|
1305
|
+
0,
|
|
1306
|
+
[],
|
|
1307
|
+
[]
|
|
1308
|
+
];
|
|
1309
|
+
var DeleteCostCategoryDefinitionRequest$ = [3, n0, _DCCDR,
|
|
1310
|
+
0,
|
|
1311
|
+
[_CCA],
|
|
1312
|
+
[0], 1
|
|
1313
|
+
];
|
|
1314
|
+
var DeleteCostCategoryDefinitionResponse$ = [3, n0, _DCCDRe,
|
|
1315
|
+
0,
|
|
1316
|
+
[_CCA, _EE],
|
|
1317
|
+
[0, 0]
|
|
1318
|
+
];
|
|
1319
|
+
var DescribeCostCategoryDefinitionRequest$ = [3, n0, _DCCDRes,
|
|
1320
|
+
0,
|
|
1321
|
+
[_CCA, _EO],
|
|
1322
|
+
[0, 0], 1
|
|
1323
|
+
];
|
|
1324
|
+
var DescribeCostCategoryDefinitionResponse$ = [3, n0, _DCCDResc,
|
|
1325
|
+
0,
|
|
1326
|
+
[_CC],
|
|
1327
|
+
[() => CostCategory$]
|
|
1328
|
+
];
|
|
1329
|
+
var DimensionValues$ = [3, n0, _DVi,
|
|
1330
|
+
0,
|
|
1331
|
+
[_K, _V, _MO],
|
|
1332
|
+
[0, 64 | 0, 64 | 0]
|
|
1333
|
+
];
|
|
1334
|
+
var DimensionValuesWithAttributes$ = [3, n0, _DVWA,
|
|
1335
|
+
0,
|
|
1336
|
+
[_Va, _At],
|
|
1337
|
+
[0, 128 | 0]
|
|
1338
|
+
];
|
|
1339
|
+
var DiskResourceUtilization$ = [3, n0, _DRU,
|
|
1340
|
+
0,
|
|
1341
|
+
[_DROPS, _DWOPS, _DRBPS, _DWBPS],
|
|
1342
|
+
[0, 0, 0, 0]
|
|
1343
|
+
];
|
|
1344
|
+
var DynamoDBCapacityDetails$ = [3, n0, _DDBCD,
|
|
1345
|
+
0,
|
|
1346
|
+
[_CU, _Re],
|
|
1347
|
+
[0, 0]
|
|
1348
|
+
];
|
|
1349
|
+
var EBSResourceUtilization$ = [3, n0, _EBSRU,
|
|
1350
|
+
0,
|
|
1351
|
+
[_EROPS, _EWOPS, _ERBPS, _EWBPS],
|
|
1352
|
+
[0, 0, 0, 0]
|
|
1353
|
+
];
|
|
1354
|
+
var EC2InstanceDetails$ = [3, n0, _ECID,
|
|
1355
|
+
0,
|
|
1356
|
+
[_Fa, _IT, _Re, _AZ, _Pl, _Te, _CG, _SFE],
|
|
1357
|
+
[0, 0, 0, 0, 0, 0, 2, 2]
|
|
1358
|
+
];
|
|
1359
|
+
var EC2ResourceDetails$ = [3, n0, _ECRD,
|
|
1360
|
+
0,
|
|
1361
|
+
[_HODR, _IT, _Pl, _Re, _Sk, _Mem, _NP, _Sto, _Vc],
|
|
1362
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1363
|
+
];
|
|
1364
|
+
var EC2ResourceUtilization$ = [3, n0, _ECRU,
|
|
1365
|
+
0,
|
|
1366
|
+
[_MCUP, _MMUP, _MSUP, _EBSRU, _DRU, _NRU],
|
|
1367
|
+
[0, 0, 0, () => EBSResourceUtilization$, () => DiskResourceUtilization$, () => NetworkResourceUtilization$]
|
|
1368
|
+
];
|
|
1369
|
+
var EC2Specification$ = [3, n0, _ECS,
|
|
1370
|
+
0,
|
|
1371
|
+
[_OC],
|
|
1372
|
+
[0]
|
|
1373
|
+
];
|
|
1374
|
+
var ElastiCacheInstanceDetails$ = [3, n0, _ECIDl,
|
|
1375
|
+
0,
|
|
1376
|
+
[_Fa, _NT, _Re, _PD, _CG, _SFE],
|
|
1377
|
+
[0, 0, 0, 0, 2, 2]
|
|
1378
|
+
];
|
|
1379
|
+
var ESInstanceDetails$ = [3, n0, _ESID,
|
|
1380
|
+
0,
|
|
1381
|
+
[_IC, _IS, _Re, _CG, _SFE],
|
|
1382
|
+
[0, 0, 0, 2, 2]
|
|
1383
|
+
];
|
|
1384
|
+
var Expression$ = [3, n0, _Ex,
|
|
1385
|
+
0,
|
|
1386
|
+
[_O, _An, _No, _Di, _Tag, _CCos],
|
|
1387
|
+
[() => Expressions, () => Expressions, () => Expression$, () => DimensionValues$, () => TagValues$, () => CostCategoryValues$]
|
|
1388
|
+
];
|
|
1389
|
+
var ForecastResult$ = [3, n0, _FR,
|
|
1390
|
+
0,
|
|
1391
|
+
[_TP, _MV, _PILB, _PIUB],
|
|
1392
|
+
[() => DateInterval$, 0, 0, 0]
|
|
1393
|
+
];
|
|
1394
|
+
var GenerationSummary$ = [3, n0, _GS,
|
|
1395
|
+
0,
|
|
1396
|
+
[_RIe, _GSe, _GST, _GCT, _ECT],
|
|
1397
|
+
[0, 0, 0, 0, 0]
|
|
1398
|
+
];
|
|
1399
|
+
var GetAnomaliesRequest$ = [3, n0, _GAR,
|
|
1400
|
+
0,
|
|
1401
|
+
[_DI, _MA, _F, _TI, _NPT, _MR],
|
|
1402
|
+
[() => AnomalyDateInterval$, 0, 0, () => TotalImpactFilter$, 0, 1], 1
|
|
1403
|
+
];
|
|
1404
|
+
var GetAnomaliesResponse$ = [3, n0, _GARe,
|
|
1405
|
+
0,
|
|
1406
|
+
[_Ano, _NPT],
|
|
1407
|
+
[() => Anomalies, 0], 1
|
|
1408
|
+
];
|
|
1409
|
+
var GetAnomalyMonitorsRequest$ = [3, n0, _GAMR,
|
|
1410
|
+
0,
|
|
1411
|
+
[_MAL, _NPT, _MR],
|
|
1412
|
+
[64 | 0, 0, 1]
|
|
1413
|
+
];
|
|
1414
|
+
var GetAnomalyMonitorsResponse$ = [3, n0, _GAMRe,
|
|
1415
|
+
0,
|
|
1416
|
+
[_AMn, _NPT],
|
|
1417
|
+
[() => AnomalyMonitors, 0], 1
|
|
1418
|
+
];
|
|
1419
|
+
var GetAnomalySubscriptionsRequest$ = [3, n0, _GASR,
|
|
1420
|
+
0,
|
|
1421
|
+
[_SAL, _MA, _NPT, _MR],
|
|
1422
|
+
[64 | 0, 0, 0, 1]
|
|
1423
|
+
];
|
|
1424
|
+
var GetAnomalySubscriptionsResponse$ = [3, n0, _GASRe,
|
|
1425
|
+
0,
|
|
1426
|
+
[_ASnoma, _NPT],
|
|
1427
|
+
[() => AnomalySubscriptions, 0], 1
|
|
1428
|
+
];
|
|
1429
|
+
var GetApproximateUsageRecordsRequest$ = [3, n0, _GAURR,
|
|
1430
|
+
0,
|
|
1431
|
+
[_Gr, _ADp, _Se],
|
|
1432
|
+
[0, 0, 64 | 0], 2
|
|
1433
|
+
];
|
|
1434
|
+
var GetApproximateUsageRecordsResponse$ = [3, n0, _GAURRe,
|
|
1435
|
+
0,
|
|
1436
|
+
[_Se, _TR, _LP],
|
|
1437
|
+
[128 | 1, 1, () => DateInterval$]
|
|
1438
|
+
];
|
|
1439
|
+
var GetCommitmentPurchaseAnalysisRequest$ = [3, n0, _GCPAR,
|
|
1440
|
+
0,
|
|
1441
|
+
[_AI],
|
|
1442
|
+
[0], 1
|
|
1443
|
+
];
|
|
1444
|
+
var GetCommitmentPurchaseAnalysisResponse$ = [3, n0, _GCPARe,
|
|
1445
|
+
0,
|
|
1446
|
+
[_ECT, _AST, _AI, _ASn, _CPAC, _ACT, _EC, _AD],
|
|
1447
|
+
[0, 0, 0, 0, () => CommitmentPurchaseAnalysisConfiguration$, 0, 0, () => AnalysisDetails$], 5
|
|
1448
|
+
];
|
|
1449
|
+
var GetCostAndUsageComparisonsRequest$ = [3, n0, _GCAUCR,
|
|
1450
|
+
0,
|
|
1451
|
+
[_BTP, _CTP, _MFC, _BVA, _Fi, _GB, _MR, _NPT],
|
|
1452
|
+
[() => DateInterval$, () => DateInterval$, 0, 0, () => Expression$, () => GroupDefinitions, 1, 0], 3
|
|
1453
|
+
];
|
|
1454
|
+
var GetCostAndUsageComparisonsResponse$ = [3, n0, _GCAUCRe,
|
|
1455
|
+
0,
|
|
1456
|
+
[_CAUCo, _TCAU, _NPT],
|
|
1457
|
+
[() => CostAndUsageComparisons, () => ComparisonMetrics, 0]
|
|
1458
|
+
];
|
|
1459
|
+
var GetCostAndUsageRequest$ = [3, n0, _GCAUR,
|
|
1460
|
+
0,
|
|
1461
|
+
[_TP, _Gr, _Me, _Fi, _GB, _BVA, _NPT],
|
|
1462
|
+
[() => DateInterval$, 0, 64 | 0, () => Expression$, () => GroupDefinitions, 0, 0], 3
|
|
1463
|
+
];
|
|
1464
|
+
var GetCostAndUsageResponse$ = [3, n0, _GCAURe,
|
|
1465
|
+
0,
|
|
1466
|
+
[_NPT, _GD, _RBT, _DVA],
|
|
1467
|
+
[0, () => GroupDefinitions, () => ResultsByTime, () => DimensionValuesWithAttributesList]
|
|
1468
|
+
];
|
|
1469
|
+
var GetCostAndUsageWithResourcesRequest$ = [3, n0, _GCAUWRR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_TP, _Gr, _Fi, _Me, _GB, _BVA, _NPT],
|
|
1472
|
+
[() => DateInterval$, 0, () => Expression$, 64 | 0, () => GroupDefinitions, 0, 0], 3
|
|
1473
|
+
];
|
|
1474
|
+
var GetCostAndUsageWithResourcesResponse$ = [3, n0, _GCAUWRRe,
|
|
1475
|
+
0,
|
|
1476
|
+
[_NPT, _GD, _RBT, _DVA],
|
|
1477
|
+
[0, () => GroupDefinitions, () => ResultsByTime, () => DimensionValuesWithAttributesList]
|
|
1478
|
+
];
|
|
1479
|
+
var GetCostCategoriesRequest$ = [3, n0, _GCCR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_TP, _SS, _CCN, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1482
|
+
[() => DateInterval$, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 1
|
|
1483
|
+
];
|
|
1484
|
+
var GetCostCategoriesResponse$ = [3, n0, _GCCRe,
|
|
1485
|
+
0,
|
|
1486
|
+
[_RS, _TS, _NPT, _CCNo, _CCV],
|
|
1487
|
+
[1, 1, 0, 64 | 0, 64 | 0], 2
|
|
1488
|
+
];
|
|
1489
|
+
var GetCostComparisonDriversRequest$ = [3, n0, _GCCDR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_BTP, _CTP, _MFC, _BVA, _Fi, _GB, _MR, _NPT],
|
|
1492
|
+
[() => DateInterval$, () => DateInterval$, 0, 0, () => Expression$, () => GroupDefinitions, 1, 0], 3
|
|
1493
|
+
];
|
|
1494
|
+
var GetCostComparisonDriversResponse$ = [3, n0, _GCCDRe,
|
|
1495
|
+
0,
|
|
1496
|
+
[_CCDo, _NPT],
|
|
1497
|
+
[() => CostComparisonDrivers, 0]
|
|
1498
|
+
];
|
|
1499
|
+
var GetCostForecastRequest$ = [3, n0, _GCFR,
|
|
1500
|
+
0,
|
|
1501
|
+
[_TP, _Metr, _Gr, _Fi, _BVA, _PIL],
|
|
1502
|
+
[() => DateInterval$, 0, 0, () => Expression$, 0, 1], 3
|
|
1503
|
+
];
|
|
1504
|
+
var GetCostForecastResponse$ = [3, n0, _GCFRe,
|
|
1505
|
+
0,
|
|
1506
|
+
[_To, _FRBT],
|
|
1507
|
+
[() => MetricValue$, () => ForecastResultsByTime]
|
|
1508
|
+
];
|
|
1509
|
+
var GetDimensionValuesRequest$ = [3, n0, _GDVR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_TP, _Dim, _SS, _Con, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1512
|
+
[() => DateInterval$, 0, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 2
|
|
1513
|
+
];
|
|
1514
|
+
var GetDimensionValuesResponse$ = [3, n0, _GDVRe,
|
|
1515
|
+
0,
|
|
1516
|
+
[_DVi, _RS, _TS, _NPT],
|
|
1517
|
+
[() => DimensionValuesWithAttributesList, 1, 1, 0], 3
|
|
1518
|
+
];
|
|
1519
|
+
var GetReservationCoverageRequest$ = [3, n0, _GRCR,
|
|
1520
|
+
0,
|
|
1521
|
+
[_TP, _GB, _Gr, _Fi, _Me, _NPT, _SB, _MR],
|
|
1522
|
+
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, 64 | 0, 0, () => SortDefinition$, 1], 1
|
|
1523
|
+
];
|
|
1524
|
+
var GetReservationCoverageResponse$ = [3, n0, _GRCRe,
|
|
1525
|
+
0,
|
|
1526
|
+
[_CBTo, _To, _NPT],
|
|
1527
|
+
[() => CoveragesByTime, () => Coverage$, 0], 1
|
|
1528
|
+
];
|
|
1529
|
+
var GetReservationPurchaseRecommendationRequest$ = [3, n0, _GRPRR,
|
|
1530
|
+
0,
|
|
1531
|
+
[_Ser, _AIc, _Fi, _ASc, _LPID, _TIY, _PO, _SSe, _PSa, _NPT],
|
|
1532
|
+
[0, 0, () => Expression$, 0, 0, 0, 0, () => ServiceSpecification$, 1, 0], 1
|
|
1533
|
+
];
|
|
1534
|
+
var GetReservationPurchaseRecommendationResponse$ = [3, n0, _GRPRRe,
|
|
1535
|
+
0,
|
|
1536
|
+
[_Meta, _Rec, _NPT],
|
|
1537
|
+
[() => ReservationPurchaseRecommendationMetadata$, () => ReservationPurchaseRecommendations, 0]
|
|
1538
|
+
];
|
|
1539
|
+
var GetReservationUtilizationRequest$ = [3, n0, _GRUR,
|
|
1540
|
+
0,
|
|
1541
|
+
[_TP, _GB, _Gr, _Fi, _SB, _NPT, _MR],
|
|
1542
|
+
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, () => SortDefinition$, 0, 1], 1
|
|
1543
|
+
];
|
|
1544
|
+
var GetReservationUtilizationResponse$ = [3, n0, _GRURe,
|
|
1545
|
+
0,
|
|
1546
|
+
[_UBT, _To, _NPT],
|
|
1547
|
+
[() => UtilizationsByTime, () => ReservationAggregates$, 0], 1
|
|
1548
|
+
];
|
|
1549
|
+
var GetRightsizingRecommendationRequest$ = [3, n0, _GRRR,
|
|
1550
|
+
0,
|
|
1551
|
+
[_Ser, _Fi, _Conf, _PSa, _NPT],
|
|
1552
|
+
[0, () => Expression$, () => RightsizingRecommendationConfiguration$, 1, 0], 1
|
|
1553
|
+
];
|
|
1554
|
+
var GetRightsizingRecommendationResponse$ = [3, n0, _GRRRe,
|
|
1555
|
+
0,
|
|
1556
|
+
[_Meta, _Su, _RR, _NPT, _Conf],
|
|
1557
|
+
[() => RightsizingRecommendationMetadata$, () => RightsizingRecommendationSummary$, () => RightsizingRecommendationList, 0, () => RightsizingRecommendationConfiguration$]
|
|
1558
|
+
];
|
|
1559
|
+
var GetSavingsPlanPurchaseRecommendationDetailsRequest$ = [3, n0, _GSPPRDR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_RDI],
|
|
1562
|
+
[0], 1
|
|
1563
|
+
];
|
|
1564
|
+
var GetSavingsPlanPurchaseRecommendationDetailsResponse$ = [3, n0, _GSPPRDRe,
|
|
1565
|
+
0,
|
|
1566
|
+
[_RDI, _RDD],
|
|
1567
|
+
[0, () => RecommendationDetailData$]
|
|
1568
|
+
];
|
|
1569
|
+
var GetSavingsPlansCoverageRequest$ = [3, n0, _GSPCR,
|
|
1570
|
+
0,
|
|
1571
|
+
[_TP, _GB, _Gr, _Fi, _Me, _NTe, _MR, _SB],
|
|
1572
|
+
[() => DateInterval$, () => GroupDefinitions, 0, () => Expression$, 64 | 0, 0, 1, () => SortDefinition$], 1
|
|
1573
|
+
];
|
|
1574
|
+
var GetSavingsPlansCoverageResponse$ = [3, n0, _GSPCRe,
|
|
1575
|
+
0,
|
|
1576
|
+
[_SPC, _NTe],
|
|
1577
|
+
[() => SavingsPlansCoverages, 0], 1
|
|
1578
|
+
];
|
|
1579
|
+
var GetSavingsPlansPurchaseRecommendationRequest$ = [3, n0, _GSPPRR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_SPT, _TIY, _PO, _LPID, _ASc, _NPT, _PSa, _Fi],
|
|
1582
|
+
[0, 0, 0, 0, 0, 0, 1, () => Expression$], 4
|
|
1583
|
+
];
|
|
1584
|
+
var GetSavingsPlansPurchaseRecommendationResponse$ = [3, n0, _GSPPRRe,
|
|
1585
|
+
0,
|
|
1586
|
+
[_Meta, _SPPR, _NPT],
|
|
1587
|
+
[() => SavingsPlansPurchaseRecommendationMetadata$, () => SavingsPlansPurchaseRecommendation$, 0]
|
|
1588
|
+
];
|
|
1589
|
+
var GetSavingsPlansUtilizationDetailsRequest$ = [3, n0, _GSPUDR,
|
|
1590
|
+
0,
|
|
1591
|
+
[_TP, _Fi, _DT, _NTe, _MR, _SB],
|
|
1592
|
+
[() => DateInterval$, () => Expression$, 64 | 0, 0, 1, () => SortDefinition$], 1
|
|
1593
|
+
];
|
|
1594
|
+
var GetSavingsPlansUtilizationDetailsResponse$ = [3, n0, _GSPUDRe,
|
|
1595
|
+
0,
|
|
1596
|
+
[_SPUD, _TP, _To, _NTe],
|
|
1597
|
+
[() => SavingsPlansUtilizationDetails, () => DateInterval$, () => SavingsPlansUtilizationAggregates$, 0], 2
|
|
1598
|
+
];
|
|
1599
|
+
var GetSavingsPlansUtilizationRequest$ = [3, n0, _GSPUR,
|
|
1600
|
+
0,
|
|
1601
|
+
[_TP, _Gr, _Fi, _SB],
|
|
1602
|
+
[() => DateInterval$, 0, () => Expression$, () => SortDefinition$], 1
|
|
1603
|
+
];
|
|
1604
|
+
var GetSavingsPlansUtilizationResponse$ = [3, n0, _GSPURe,
|
|
1605
|
+
0,
|
|
1606
|
+
[_To, _SPUBT],
|
|
1607
|
+
[() => SavingsPlansUtilizationAggregates$, () => SavingsPlansUtilizationsByTime], 1
|
|
1608
|
+
];
|
|
1609
|
+
var GetTagsRequest$ = [3, n0, _GTR,
|
|
1610
|
+
0,
|
|
1611
|
+
[_TP, _SS, _TK, _Fi, _SB, _BVA, _MR, _NPT],
|
|
1612
|
+
[() => DateInterval$, 0, 0, () => Expression$, () => SortDefinitions, 0, 1, 0], 1
|
|
1613
|
+
];
|
|
1614
|
+
var GetTagsResponse$ = [3, n0, _GTRe,
|
|
1615
|
+
0,
|
|
1616
|
+
[_Tag, _RS, _TS, _NPT],
|
|
1617
|
+
[64 | 0, 1, 1, 0], 3
|
|
1618
|
+
];
|
|
1619
|
+
var GetUsageForecastRequest$ = [3, n0, _GUFR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_TP, _Metr, _Gr, _Fi, _BVA, _PIL],
|
|
1622
|
+
[() => DateInterval$, 0, 0, () => Expression$, 0, 1], 3
|
|
1623
|
+
];
|
|
1624
|
+
var GetUsageForecastResponse$ = [3, n0, _GUFRe,
|
|
1625
|
+
0,
|
|
1626
|
+
[_To, _FRBT],
|
|
1627
|
+
[() => MetricValue$, () => ForecastResultsByTime]
|
|
1628
|
+
];
|
|
1629
|
+
var Group$ = [3, n0, _Gro,
|
|
1630
|
+
0,
|
|
1631
|
+
[_Ke, _Me],
|
|
1632
|
+
[64 | 0, () => Metrics]
|
|
1633
|
+
];
|
|
1634
|
+
var GroupDefinition$ = [3, n0, _GDr,
|
|
1635
|
+
0,
|
|
1636
|
+
[_Ty, _K],
|
|
1637
|
+
[0, 0]
|
|
1638
|
+
];
|
|
1639
|
+
var Impact$ = [3, n0, _I,
|
|
1640
|
+
0,
|
|
1641
|
+
[_MI, _TI, _TAS, _TES, _TIP],
|
|
1642
|
+
[1, 1, 1, 1, 1], 1
|
|
1643
|
+
];
|
|
1644
|
+
var InstanceDetails$ = [3, n0, _ID,
|
|
1645
|
+
0,
|
|
1646
|
+
[_ECID, _RDSID, _RID, _ECIDl, _ESID, _MDBID],
|
|
1647
|
+
[() => EC2InstanceDetails$, () => RDSInstanceDetails$, () => RedshiftInstanceDetails$, () => ElastiCacheInstanceDetails$, () => ESInstanceDetails$, () => MemoryDBInstanceDetails$]
|
|
1648
|
+
];
|
|
1649
|
+
var ListCommitmentPurchaseAnalysesRequest$ = [3, n0, _LCPAR,
|
|
1650
|
+
0,
|
|
1651
|
+
[_ASn, _NPT, _PSa, _AIna],
|
|
1652
|
+
[0, 0, 1, 64 | 0]
|
|
1653
|
+
];
|
|
1654
|
+
var ListCommitmentPurchaseAnalysesResponse$ = [3, n0, _LCPARi,
|
|
1655
|
+
0,
|
|
1656
|
+
[_ASL, _NPT],
|
|
1657
|
+
[() => AnalysisSummaryList, 0]
|
|
1658
|
+
];
|
|
1659
|
+
var ListCostAllocationTagBackfillHistoryRequest$ = [3, n0, _LCATBHR,
|
|
1660
|
+
0,
|
|
1661
|
+
[_NTe, _MR],
|
|
1662
|
+
[0, 1]
|
|
1663
|
+
];
|
|
1664
|
+
var ListCostAllocationTagBackfillHistoryResponse$ = [3, n0, _LCATBHRi,
|
|
1665
|
+
0,
|
|
1666
|
+
[_BR, _NTe],
|
|
1667
|
+
[() => CostAllocationTagBackfillRequestList, 0]
|
|
1668
|
+
];
|
|
1669
|
+
var ListCostAllocationTagsRequest$ = [3, n0, _LCATR,
|
|
1670
|
+
0,
|
|
1671
|
+
[_St, _TKa, _Ty, _NTe, _MR],
|
|
1672
|
+
[0, 64 | 0, 0, 0, 1]
|
|
1673
|
+
];
|
|
1674
|
+
var ListCostAllocationTagsResponse$ = [3, n0, _LCATRi,
|
|
1675
|
+
0,
|
|
1676
|
+
[_CATo, _NTe],
|
|
1677
|
+
[() => CostAllocationTagList, 0]
|
|
1678
|
+
];
|
|
1679
|
+
var ListCostCategoryDefinitionsRequest$ = [3, n0, _LCCDR,
|
|
1680
|
+
0,
|
|
1681
|
+
[_EO, _NTe, _MR, _SRT],
|
|
1682
|
+
[0, 0, 1, 64 | 0]
|
|
1683
|
+
];
|
|
1684
|
+
var ListCostCategoryDefinitionsResponse$ = [3, n0, _LCCDRi,
|
|
1685
|
+
0,
|
|
1686
|
+
[_CCRos, _NTe],
|
|
1687
|
+
[() => CostCategoryReferencesList, 0]
|
|
1688
|
+
];
|
|
1689
|
+
var ListCostCategoryResourceAssociationsRequest$ = [3, n0, _LCCRAR,
|
|
1690
|
+
0,
|
|
1691
|
+
[_CCA, _NTe, _MR],
|
|
1692
|
+
[0, 0, 1]
|
|
1693
|
+
];
|
|
1694
|
+
var ListCostCategoryResourceAssociationsResponse$ = [3, n0, _LCCRARi,
|
|
1695
|
+
0,
|
|
1696
|
+
[_CCRAo, _NTe],
|
|
1697
|
+
[() => CostCategoryResourceAssociations, 0]
|
|
1698
|
+
];
|
|
1699
|
+
var ListSavingsPlansPurchaseRecommendationGenerationRequest$ = [3, n0, _LSPPRGR,
|
|
1700
|
+
0,
|
|
1701
|
+
[_GSe, _RIec, _PSa, _NPT],
|
|
1702
|
+
[0, 64 | 0, 1, 0]
|
|
1703
|
+
];
|
|
1704
|
+
var ListSavingsPlansPurchaseRecommendationGenerationResponse$ = [3, n0, _LSPPRGRi,
|
|
1705
|
+
0,
|
|
1706
|
+
[_GSL, _NPT],
|
|
1707
|
+
[() => GenerationSummaryList, 0]
|
|
1708
|
+
];
|
|
1709
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1710
|
+
0,
|
|
1711
|
+
[_RAe],
|
|
1712
|
+
[0], 1
|
|
1713
|
+
];
|
|
1714
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1715
|
+
0,
|
|
1716
|
+
[_RT],
|
|
1717
|
+
[() => ResourceTagList]
|
|
1718
|
+
];
|
|
1719
|
+
var MemoryDBInstanceDetails$ = [3, n0, _MDBID,
|
|
1720
|
+
0,
|
|
1721
|
+
[_Fa, _NT, _Re, _CG, _SFE],
|
|
1722
|
+
[0, 0, 0, 2, 2]
|
|
1723
|
+
];
|
|
1724
|
+
var MetricValue$ = [3, n0, _MVe,
|
|
1725
|
+
0,
|
|
1726
|
+
[_Am, _U],
|
|
1727
|
+
[0, 0]
|
|
1728
|
+
];
|
|
1729
|
+
var ModifyRecommendationDetail$ = [3, n0, _MRD,
|
|
1730
|
+
0,
|
|
1731
|
+
[_TIa],
|
|
1732
|
+
[() => TargetInstancesList]
|
|
1733
|
+
];
|
|
1734
|
+
var NetworkResourceUtilization$ = [3, n0, _NRU,
|
|
1735
|
+
0,
|
|
1736
|
+
[_NIBPS, _NOBPS, _NPIPS, _NPOPS],
|
|
1737
|
+
[0, 0, 0, 0]
|
|
1738
|
+
];
|
|
1739
|
+
var ProvideAnomalyFeedbackRequest$ = [3, n0, _PAFR,
|
|
1740
|
+
0,
|
|
1741
|
+
[_AIn, _F],
|
|
1742
|
+
[0, 0], 2
|
|
1743
|
+
];
|
|
1744
|
+
var ProvideAnomalyFeedbackResponse$ = [3, n0, _PAFRr,
|
|
1745
|
+
0,
|
|
1746
|
+
[_AIn],
|
|
1747
|
+
[0], 1
|
|
1748
|
+
];
|
|
1749
|
+
var RDSInstanceDetails$ = [3, n0, _RDSID,
|
|
1750
|
+
0,
|
|
1751
|
+
[_Fa, _IT, _Re, _DE, _DEa, _DO, _LM, _CG, _SFE, _DM],
|
|
1752
|
+
[0, 0, 0, 0, 0, 0, 0, 2, 2, 0]
|
|
1753
|
+
];
|
|
1754
|
+
var RecommendationDetailData$ = [3, n0, _RDD,
|
|
1755
|
+
0,
|
|
1756
|
+
[_ASc, _LPID, _SPT, _TIY, _PO, _AIc, _CCu, _IF, _Re, _OI, _GT, _LUT, _CAHODS, _CMHODS, _CMHODSu, _EAU, _EMSA, _EODC, _EODCWCC, _EROI, _ESPC, _ESA, _ESP, _EHC, _HCTP, _UC, _CAC, _EAC, _MOLP],
|
|
1757
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => MetricsOverLookbackPeriod]
|
|
1758
|
+
];
|
|
1759
|
+
var RecommendationDetailHourlyMetrics$ = [3, n0, _RDHM,
|
|
1760
|
+
0,
|
|
1761
|
+
[_ST, _EODC, _CCur, _ECs, _ENCU],
|
|
1762
|
+
[0, 0, 0, 0, 0]
|
|
1763
|
+
];
|
|
1764
|
+
var RedshiftInstanceDetails$ = [3, n0, _RID,
|
|
1765
|
+
0,
|
|
1766
|
+
[_Fa, _NT, _Re, _CG, _SFE],
|
|
1767
|
+
[0, 0, 0, 2, 2]
|
|
1768
|
+
];
|
|
1769
|
+
var ReservationAggregates$ = [3, n0, _RAes,
|
|
1770
|
+
0,
|
|
1771
|
+
[_UP, _UPIU, _PH, _PU, _TAH, _TAU, _UH, _UU, _ODCORIHU, _NRIS, _TPRIS, _AUF, _ARF, _TAF, _RICFUH, _RSe, _US],
|
|
1772
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1773
|
+
];
|
|
1774
|
+
var ReservationCoverageGroup$ = [3, n0, _RCG,
|
|
1775
|
+
0,
|
|
1776
|
+
[_At, _Co],
|
|
1777
|
+
[128 | 0, () => Coverage$]
|
|
1778
|
+
];
|
|
1779
|
+
var ReservationPurchaseRecommendation$ = [3, n0, _RPR,
|
|
1780
|
+
0,
|
|
1781
|
+
[_ASc, _LPID, _TIY, _PO, _SSe, _RDe, _RSec],
|
|
1782
|
+
[0, 0, 0, 0, () => ServiceSpecification$, () => ReservationPurchaseRecommendationDetails, () => ReservationPurchaseRecommendationSummary$]
|
|
1783
|
+
];
|
|
1784
|
+
var ReservationPurchaseRecommendationDetail$ = [3, n0, _RPRD,
|
|
1785
|
+
0,
|
|
1786
|
+
[_AIc, _ID, _RNOITP, _RNUTP, _MNOIUPH, _MNUUPH, _MNOIUPHa, _MNUUPHa, _ANOIUPH, _ANUUPH, _AU, _EBEIM, _CCu, _EMSA, _EMSP, _EMODC, _ERCFLP, _UC, _RSMC, _RCD, _RNOCUTP, _MNOCUUPH, _MNOCUUPHa, _ANOCUUPH],
|
|
1787
|
+
[0, () => InstanceDetails$, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => ReservedCapacityDetails$, 0, 0, 0, 0]
|
|
1788
|
+
];
|
|
1789
|
+
var ReservationPurchaseRecommendationMetadata$ = [3, n0, _RPRM,
|
|
1790
|
+
0,
|
|
1791
|
+
[_RIe, _GT, _AMd],
|
|
1792
|
+
[0, 0, 0]
|
|
1793
|
+
];
|
|
1794
|
+
var ReservationPurchaseRecommendationSummary$ = [3, n0, _RPRS,
|
|
1795
|
+
0,
|
|
1796
|
+
[_TEMSA, _TEMSP, _CCu],
|
|
1797
|
+
[0, 0, 0]
|
|
1798
|
+
];
|
|
1799
|
+
var ReservationUtilizationGroup$ = [3, n0, _RUG,
|
|
1800
|
+
0,
|
|
1801
|
+
[_K, _Va, _At, _Ut],
|
|
1802
|
+
[0, 0, 128 | 0, () => ReservationAggregates$]
|
|
1803
|
+
];
|
|
1804
|
+
var ReservedCapacityDetails$ = [3, n0, _RCD,
|
|
1805
|
+
0,
|
|
1806
|
+
[_DDBCD],
|
|
1807
|
+
[() => DynamoDBCapacityDetails$]
|
|
1808
|
+
];
|
|
1809
|
+
var ResourceDetails$ = [3, n0, _RD,
|
|
1810
|
+
0,
|
|
1811
|
+
[_ECRD],
|
|
1812
|
+
[() => EC2ResourceDetails$]
|
|
1813
|
+
];
|
|
1814
|
+
var ResourceTag$ = [3, n0, _RTe,
|
|
1815
|
+
0,
|
|
1816
|
+
[_K, _Va],
|
|
1817
|
+
[0, 0], 2
|
|
1818
|
+
];
|
|
1819
|
+
var ResourceUtilization$ = [3, n0, _RU,
|
|
1820
|
+
0,
|
|
1821
|
+
[_ECRU],
|
|
1822
|
+
[() => EC2ResourceUtilization$]
|
|
1823
|
+
];
|
|
1824
|
+
var ResultByTime$ = [3, n0, _RBTe,
|
|
1825
|
+
0,
|
|
1826
|
+
[_TP, _To, _G, _Es],
|
|
1827
|
+
[() => DateInterval$, () => Metrics, () => Groups, 2]
|
|
1828
|
+
];
|
|
1829
|
+
var RightsizingRecommendation$ = [3, n0, _RRi,
|
|
1830
|
+
0,
|
|
1831
|
+
[_AIc, _CI, _RTi, _MRD, _TRD, _FRC],
|
|
1832
|
+
[0, () => CurrentInstance$, 0, () => ModifyRecommendationDetail$, () => TerminateRecommendationDetail$, 64 | 0]
|
|
1833
|
+
];
|
|
1834
|
+
var RightsizingRecommendationConfiguration$ = [3, n0, _RRC,
|
|
1835
|
+
0,
|
|
1836
|
+
[_RTec, _BC],
|
|
1837
|
+
[0, 2], 2
|
|
1838
|
+
];
|
|
1839
|
+
var RightsizingRecommendationMetadata$ = [3, n0, _RRM,
|
|
1840
|
+
0,
|
|
1841
|
+
[_RIe, _GT, _LPID, _AMd],
|
|
1842
|
+
[0, 0, 0, 0]
|
|
1843
|
+
];
|
|
1844
|
+
var RightsizingRecommendationSummary$ = [3, n0, _RRS,
|
|
1845
|
+
0,
|
|
1846
|
+
[_TRC, _ETMSA, _SCC, _SP],
|
|
1847
|
+
[0, 0, 0, 0]
|
|
1848
|
+
];
|
|
1849
|
+
var RootCause$ = [3, n0, _RCo,
|
|
1850
|
+
0,
|
|
1851
|
+
[_Ser, _Re, _LA, _LAN, _UT, _I],
|
|
1852
|
+
[0, 0, 0, 0, 0, () => RootCauseImpact$]
|
|
1853
|
+
];
|
|
1854
|
+
var RootCauseImpact$ = [3, n0, _RCI,
|
|
1855
|
+
0,
|
|
1856
|
+
[_Cont],
|
|
1857
|
+
[1], 1
|
|
1858
|
+
];
|
|
1859
|
+
var SavingsPlans$ = [3, n0, _SPa,
|
|
1860
|
+
0,
|
|
1861
|
+
[_PO, _SPT, _Re, _IF, _TIY, _SPCa, _OI],
|
|
1862
|
+
[0, 0, 0, 0, 0, 1, 0]
|
|
1863
|
+
];
|
|
1864
|
+
var SavingsPlansAmortizedCommitment$ = [3, n0, _SPAC,
|
|
1865
|
+
0,
|
|
1866
|
+
[_ARC, _AUC, _TAC],
|
|
1867
|
+
[0, 0, 0]
|
|
1868
|
+
];
|
|
1869
|
+
var SavingsPlansCoverage$ = [3, n0, _SPCav,
|
|
1870
|
+
0,
|
|
1871
|
+
[_At, _Co, _TP],
|
|
1872
|
+
[128 | 0, () => SavingsPlansCoverageData$, () => DateInterval$]
|
|
1873
|
+
];
|
|
1874
|
+
var SavingsPlansCoverageData$ = [3, n0, _SPCD,
|
|
1875
|
+
0,
|
|
1876
|
+
[_SCBSP, _ODC, _TC, _CP],
|
|
1877
|
+
[0, 0, 0, 0]
|
|
1878
|
+
];
|
|
1879
|
+
var SavingsPlansDetails$ = [3, n0, _SPD,
|
|
1880
|
+
0,
|
|
1881
|
+
[_Re, _IF, _OI],
|
|
1882
|
+
[0, 0, 0]
|
|
1883
|
+
];
|
|
1884
|
+
var SavingsPlansPurchaseAnalysisConfiguration$ = [3, n0, _SPPAC,
|
|
1885
|
+
0,
|
|
1886
|
+
[_AT, _SPTA, _LBTP, _ASc, _AIc, _SPTE, _SPTC],
|
|
1887
|
+
[0, () => SavingsPlansToAdd, () => DateInterval$, 0, 0, 64 | 0, 1], 3
|
|
1888
|
+
];
|
|
1889
|
+
var SavingsPlansPurchaseAnalysisDetails$ = [3, n0, _SPPAD,
|
|
1890
|
+
0,
|
|
1891
|
+
[_CCu, _LPIH, _CAC, _CAHODS, _CMHODS, _CMHODSu, _CODS, _EHC, _HCTP, _EAC, _EAU, _EMSA, _EODC, _EODCWCC, _EROI, _ESA, _ESP, _ECC, _LUT, _UC, _AMd, _MOLP],
|
|
1892
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => MetricsOverLookbackPeriod]
|
|
1893
|
+
];
|
|
1894
|
+
var SavingsPlansPurchaseRecommendation$ = [3, n0, _SPPR,
|
|
1895
|
+
0,
|
|
1896
|
+
[_ASc, _SPT, _TIY, _PO, _LPID, _SPPRD, _SPPRS],
|
|
1897
|
+
[0, 0, 0, 0, 0, () => SavingsPlansPurchaseRecommendationDetailList, () => SavingsPlansPurchaseRecommendationSummary$]
|
|
1898
|
+
];
|
|
1899
|
+
var SavingsPlansPurchaseRecommendationDetail$ = [3, n0, _SPPRDa,
|
|
1900
|
+
0,
|
|
1901
|
+
[_SPD, _AIc, _UC, _EROI, _CCu, _ESPC, _EODC, _EODCWCC, _ESA, _ESP, _HCTP, _EAU, _EMSA, _CMHODSu, _CMHODS, _CAHODS, _RDI],
|
|
1902
|
+
[() => SavingsPlansDetails$, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1903
|
+
];
|
|
1904
|
+
var SavingsPlansPurchaseRecommendationMetadata$ = [3, n0, _SPPRM,
|
|
1905
|
+
0,
|
|
1906
|
+
[_RIe, _GT, _AMd],
|
|
1907
|
+
[0, 0, 0]
|
|
1908
|
+
];
|
|
1909
|
+
var SavingsPlansPurchaseRecommendationSummary$ = [3, n0, _SPPRS,
|
|
1910
|
+
0,
|
|
1911
|
+
[_EROI, _CCu, _ETC, _CODS, _ESA, _TRC, _DCTP, _HCTP, _ESP, _EMSA, _EODCWCC],
|
|
1912
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
1913
|
+
];
|
|
1914
|
+
var SavingsPlansSavings$ = [3, n0, _SPS,
|
|
1915
|
+
0,
|
|
1916
|
+
[_NS, _ODCE],
|
|
1917
|
+
[0, 0]
|
|
1918
|
+
];
|
|
1919
|
+
var SavingsPlansUtilization$ = [3, n0, _SPU,
|
|
1920
|
+
0,
|
|
1921
|
+
[_TCo, _UCs, _UCn, _UP],
|
|
1922
|
+
[0, 0, 0, 0]
|
|
1923
|
+
];
|
|
1924
|
+
var SavingsPlansUtilizationAggregates$ = [3, n0, _SPUA,
|
|
1925
|
+
0,
|
|
1926
|
+
[_Ut, _Sa, _AC],
|
|
1927
|
+
[() => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$], 1
|
|
1928
|
+
];
|
|
1929
|
+
var SavingsPlansUtilizationByTime$ = [3, n0, _SPUBTa,
|
|
1930
|
+
0,
|
|
1931
|
+
[_TP, _Ut, _Sa, _AC],
|
|
1932
|
+
[() => DateInterval$, () => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$], 2
|
|
1933
|
+
];
|
|
1934
|
+
var SavingsPlansUtilizationDetail$ = [3, n0, _SPUDa,
|
|
1935
|
+
0,
|
|
1936
|
+
[_SPA, _At, _Ut, _Sa, _AC],
|
|
1937
|
+
[0, 128 | 0, () => SavingsPlansUtilization$, () => SavingsPlansSavings$, () => SavingsPlansAmortizedCommitment$]
|
|
1938
|
+
];
|
|
1939
|
+
var ServiceSpecification$ = [3, n0, _SSe,
|
|
1940
|
+
0,
|
|
1941
|
+
[_ECS],
|
|
1942
|
+
[() => EC2Specification$]
|
|
1943
|
+
];
|
|
1944
|
+
var SortDefinition$ = [3, n0, _SDo,
|
|
1945
|
+
0,
|
|
1946
|
+
[_K, _SO],
|
|
1947
|
+
[0, 0], 1
|
|
1948
|
+
];
|
|
1949
|
+
var StartCommitmentPurchaseAnalysisRequest$ = [3, n0, _SCPAR,
|
|
1950
|
+
0,
|
|
1951
|
+
[_CPAC],
|
|
1952
|
+
[() => CommitmentPurchaseAnalysisConfiguration$], 1
|
|
1953
|
+
];
|
|
1954
|
+
var StartCommitmentPurchaseAnalysisResponse$ = [3, n0, _SCPARt,
|
|
1955
|
+
0,
|
|
1956
|
+
[_AI, _AST, _ECT],
|
|
1957
|
+
[0, 0, 0], 3
|
|
1958
|
+
];
|
|
1959
|
+
var StartCostAllocationTagBackfillRequest$ = [3, n0, _SCATBR,
|
|
1960
|
+
0,
|
|
1961
|
+
[_BF],
|
|
1962
|
+
[0], 1
|
|
1963
|
+
];
|
|
1964
|
+
var StartCostAllocationTagBackfillResponse$ = [3, n0, _SCATBRt,
|
|
1965
|
+
0,
|
|
1966
|
+
[_BRa],
|
|
1967
|
+
[() => CostAllocationTagBackfillRequest$]
|
|
1968
|
+
];
|
|
1969
|
+
var StartSavingsPlansPurchaseRecommendationGenerationRequest$ = [3, n0, _SSPPRGR,
|
|
1970
|
+
0,
|
|
1971
|
+
[],
|
|
1972
|
+
[]
|
|
1973
|
+
];
|
|
1974
|
+
var StartSavingsPlansPurchaseRecommendationGenerationResponse$ = [3, n0, _SSPPRGRt,
|
|
1975
|
+
0,
|
|
1976
|
+
[_RIe, _GST, _ECT],
|
|
1977
|
+
[0, 0, 0]
|
|
1978
|
+
];
|
|
1979
|
+
var Subscriber$ = [3, n0, _Sub,
|
|
1980
|
+
0,
|
|
1981
|
+
[_Ad, _Ty, _St],
|
|
1982
|
+
[0, 0, 0]
|
|
1983
|
+
];
|
|
1984
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1985
|
+
0,
|
|
1986
|
+
[_RAe, _RT],
|
|
1987
|
+
[0, () => ResourceTagList], 2
|
|
1988
|
+
];
|
|
1989
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1990
|
+
0,
|
|
1991
|
+
[],
|
|
1992
|
+
[]
|
|
1993
|
+
];
|
|
1994
|
+
var TagValues$ = [3, n0, _TV,
|
|
1995
|
+
0,
|
|
1996
|
+
[_K, _V, _MO],
|
|
1997
|
+
[0, 64 | 0, 64 | 0]
|
|
1998
|
+
];
|
|
1999
|
+
var TargetInstance$ = [3, n0, _TIar,
|
|
2000
|
+
0,
|
|
2001
|
+
[_EMC, _EMS, _CCu, _DTI, _RD, _ERU, _PDl],
|
|
2002
|
+
[0, 0, 0, 2, () => ResourceDetails$, () => ResourceUtilization$, 64 | 0]
|
|
2003
|
+
];
|
|
2004
|
+
var TerminateRecommendationDetail$ = [3, n0, _TRD,
|
|
2005
|
+
0,
|
|
2006
|
+
[_EMS, _CCu],
|
|
2007
|
+
[0, 0]
|
|
2008
|
+
];
|
|
2009
|
+
var TotalImpactFilter$ = [3, n0, _TIF,
|
|
2010
|
+
0,
|
|
2011
|
+
[_NO, _SV, _EV],
|
|
2012
|
+
[0, 1, 1], 2
|
|
2013
|
+
];
|
|
2014
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2015
|
+
0,
|
|
2016
|
+
[_RAe, _RTK],
|
|
2017
|
+
[0, 64 | 0], 2
|
|
2018
|
+
];
|
|
2019
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
2020
|
+
0,
|
|
2021
|
+
[],
|
|
2022
|
+
[]
|
|
2023
|
+
];
|
|
2024
|
+
var UpdateAnomalyMonitorRequest$ = [3, n0, _UAMR,
|
|
2025
|
+
0,
|
|
2026
|
+
[_MA, _MN],
|
|
2027
|
+
[0, 0], 1
|
|
2028
|
+
];
|
|
2029
|
+
var UpdateAnomalyMonitorResponse$ = [3, n0, _UAMRp,
|
|
2030
|
+
0,
|
|
2031
|
+
[_MA],
|
|
2032
|
+
[0], 1
|
|
2033
|
+
];
|
|
2034
|
+
var UpdateAnomalySubscriptionRequest$ = [3, n0, _UASR,
|
|
2035
|
+
0,
|
|
2036
|
+
[_SA, _T, _Fr, _MAL, _S, _SN, _TE],
|
|
2037
|
+
[0, 1, 0, 64 | 0, () => Subscribers, 0, () => Expression$], 1
|
|
2038
|
+
];
|
|
2039
|
+
var UpdateAnomalySubscriptionResponse$ = [3, n0, _UASRp,
|
|
2040
|
+
0,
|
|
2041
|
+
[_SA],
|
|
2042
|
+
[0], 1
|
|
2043
|
+
];
|
|
2044
|
+
var UpdateCostAllocationTagsStatusError$ = [3, n0, _UCATSE,
|
|
2045
|
+
0,
|
|
2046
|
+
[_TK, _Cod, _M],
|
|
2047
|
+
[0, 0, 0]
|
|
2048
|
+
];
|
|
2049
|
+
var UpdateCostAllocationTagsStatusRequest$ = [3, n0, _UCATSR,
|
|
2050
|
+
0,
|
|
2051
|
+
[_CATS],
|
|
2052
|
+
[() => CostAllocationTagStatusList], 1
|
|
2053
|
+
];
|
|
2054
|
+
var UpdateCostAllocationTagsStatusResponse$ = [3, n0, _UCATSRp,
|
|
2055
|
+
0,
|
|
2056
|
+
[_Er],
|
|
2057
|
+
[() => UpdateCostAllocationTagsStatusErrors]
|
|
2058
|
+
];
|
|
2059
|
+
var UpdateCostCategoryDefinitionRequest$ = [3, n0, _UCCDR,
|
|
2060
|
+
0,
|
|
2061
|
+
[_CCA, _RV, _R, _ES, _DVe, _SCR],
|
|
2062
|
+
[0, 0, () => CostCategoryRulesList, 0, 0, () => CostCategorySplitChargeRulesList], 3
|
|
2063
|
+
];
|
|
2064
|
+
var UpdateCostCategoryDefinitionResponse$ = [3, n0, _UCCDRp,
|
|
2065
|
+
0,
|
|
2066
|
+
[_CCA, _ES],
|
|
2067
|
+
[0, 0]
|
|
2068
|
+
];
|
|
2069
|
+
var UtilizationByTime$ = [3, n0, _UBTt,
|
|
2070
|
+
0,
|
|
2071
|
+
[_TP, _G, _To],
|
|
2072
|
+
[() => DateInterval$, () => ReservationUtilizationGroups, () => ReservationAggregates$]
|
|
2073
|
+
];
|
|
2074
|
+
var AnalysisSummaryList = [1, n0, _ASL,
|
|
2075
|
+
0, () => AnalysisSummary$
|
|
2076
|
+
];
|
|
2077
|
+
var Anomalies = [1, n0, _Ano,
|
|
2078
|
+
0, () => Anomaly$
|
|
2079
|
+
];
|
|
2080
|
+
var AnomalyMonitors = [1, n0, _AMn,
|
|
2081
|
+
0, () => AnomalyMonitor$
|
|
2082
|
+
];
|
|
2083
|
+
var AnomalySubscriptions = [1, n0, _ASnoma,
|
|
2084
|
+
0, () => AnomalySubscription$
|
|
2085
|
+
];
|
|
2086
|
+
var CostAllocationTagBackfillRequestList = [1, n0, _CATBRL,
|
|
2087
|
+
0, () => CostAllocationTagBackfillRequest$
|
|
2088
|
+
];
|
|
2089
|
+
var CostAllocationTagList = [1, n0, _CATL,
|
|
2090
|
+
0, () => CostAllocationTag$
|
|
2091
|
+
];
|
|
2092
|
+
var CostAllocationTagStatusList = [1, n0, _CATSL,
|
|
2093
|
+
0, () => CostAllocationTagStatusEntry$
|
|
2094
|
+
];
|
|
2095
|
+
var CostAndUsageComparisons = [1, n0, _CAUCo,
|
|
2096
|
+
0, () => CostAndUsageComparison$
|
|
2097
|
+
];
|
|
2098
|
+
var CostCategoryProcessingStatusList = [1, n0, _CCPSL,
|
|
2099
|
+
0, () => CostCategoryProcessingStatus$
|
|
2100
|
+
];
|
|
2101
|
+
var CostCategoryReferencesList = [1, n0, _CCRL,
|
|
2102
|
+
0, () => CostCategoryReference$
|
|
2103
|
+
];
|
|
2104
|
+
var CostCategoryResourceAssociations = [1, n0, _CCRAo,
|
|
2105
|
+
0, () => CostCategoryResourceAssociation$
|
|
2106
|
+
];
|
|
2107
|
+
var CostCategoryRulesList = [1, n0, _CCRLo,
|
|
2108
|
+
0, () => CostCategoryRule$
|
|
2109
|
+
];
|
|
2110
|
+
var CostCategorySplitChargeRuleParametersList = [1, n0, _CCSCRPL,
|
|
2111
|
+
0, () => CostCategorySplitChargeRuleParameter$
|
|
2112
|
+
];
|
|
2113
|
+
var CostCategorySplitChargeRulesList = [1, n0, _CCSCRL,
|
|
2114
|
+
0, () => CostCategorySplitChargeRule$
|
|
2115
|
+
];
|
|
2116
|
+
var CostComparisonDrivers = [1, n0, _CCDo,
|
|
2117
|
+
0, () => CostComparisonDriver$
|
|
2118
|
+
];
|
|
2119
|
+
var CostDrivers = [1, n0, _CDo,
|
|
2120
|
+
0, () => CostDriver$
|
|
2121
|
+
];
|
|
2122
|
+
var CoveragesByTime = [1, n0, _CBTo,
|
|
2123
|
+
0, () => CoverageByTime$
|
|
2124
|
+
];
|
|
2125
|
+
var DimensionValuesWithAttributesList = [1, n0, _DVWAL,
|
|
2126
|
+
0, () => DimensionValuesWithAttributes$
|
|
2127
|
+
];
|
|
2128
|
+
var Expressions = [1, n0, _Exp,
|
|
2129
|
+
0, () => Expression$
|
|
2130
|
+
];
|
|
2131
|
+
var ForecastResultsByTime = [1, n0, _FRBT,
|
|
2132
|
+
0, () => ForecastResult$
|
|
2133
|
+
];
|
|
2134
|
+
var GenerationSummaryList = [1, n0, _GSL,
|
|
2135
|
+
0, () => GenerationSummary$
|
|
2136
|
+
];
|
|
2137
|
+
var GroupDefinitions = [1, n0, _GD,
|
|
2138
|
+
0, () => GroupDefinition$
|
|
2139
|
+
];
|
|
2140
|
+
var Groups = [1, n0, _G,
|
|
2141
|
+
0, () => Group$
|
|
2142
|
+
];
|
|
2143
|
+
var MetricsOverLookbackPeriod = [1, n0, _MOLP,
|
|
2144
|
+
0, () => RecommendationDetailHourlyMetrics$
|
|
2145
|
+
];
|
|
2146
|
+
var ReservationCoverageGroups = [1, n0, _RCGe,
|
|
2147
|
+
0, () => ReservationCoverageGroup$
|
|
2148
|
+
];
|
|
2149
|
+
var ReservationPurchaseRecommendationDetails = [1, n0, _RPRDe,
|
|
2150
|
+
0, () => ReservationPurchaseRecommendationDetail$
|
|
2151
|
+
];
|
|
2152
|
+
var ReservationPurchaseRecommendations = [1, n0, _RPRe,
|
|
2153
|
+
0, () => ReservationPurchaseRecommendation$
|
|
2154
|
+
];
|
|
2155
|
+
var ReservationUtilizationGroups = [1, n0, _RUGe,
|
|
2156
|
+
0, () => ReservationUtilizationGroup$
|
|
2157
|
+
];
|
|
2158
|
+
var ResourceTagList = [1, n0, _RTL,
|
|
2159
|
+
0, () => ResourceTag$
|
|
2160
|
+
];
|
|
2161
|
+
var ResultsByTime = [1, n0, _RBT,
|
|
2162
|
+
0, () => ResultByTime$
|
|
2163
|
+
];
|
|
2164
|
+
var RightsizingRecommendationList = [1, n0, _RRL,
|
|
2165
|
+
0, () => RightsizingRecommendation$
|
|
2166
|
+
];
|
|
2167
|
+
var RootCauses = [1, n0, _RC,
|
|
2168
|
+
0, () => RootCause$
|
|
2169
|
+
];
|
|
2170
|
+
var SavingsPlansCoverages = [1, n0, _SPC,
|
|
2171
|
+
0, () => SavingsPlansCoverage$
|
|
2172
|
+
];
|
|
2173
|
+
var SavingsPlansPurchaseRecommendationDetailList = [1, n0, _SPPRDL,
|
|
2174
|
+
0, () => SavingsPlansPurchaseRecommendationDetail$
|
|
2175
|
+
];
|
|
2176
|
+
var SavingsPlansToAdd = [1, n0, _SPTA,
|
|
2177
|
+
0, () => SavingsPlans$
|
|
2178
|
+
];
|
|
2179
|
+
var SavingsPlansUtilizationDetails = [1, n0, _SPUD,
|
|
2180
|
+
0, () => SavingsPlansUtilizationDetail$
|
|
2181
|
+
];
|
|
2182
|
+
var SavingsPlansUtilizationsByTime = [1, n0, _SPUBT,
|
|
2183
|
+
0, () => SavingsPlansUtilizationByTime$
|
|
2184
|
+
];
|
|
2185
|
+
var SortDefinitions = [1, n0, _SDor,
|
|
2186
|
+
0, () => SortDefinition$
|
|
2187
|
+
];
|
|
2188
|
+
var Subscribers = [1, n0, _S,
|
|
2189
|
+
0, () => Subscriber$
|
|
2190
|
+
];
|
|
2191
|
+
var TagValuesList = [1, n0, _TVL,
|
|
2192
|
+
0, () => TagValues$
|
|
2193
|
+
];
|
|
2194
|
+
var TargetInstancesList = [1, n0, _TIL,
|
|
2195
|
+
0, () => TargetInstance$
|
|
2196
|
+
];
|
|
2197
|
+
var UpdateCostAllocationTagsStatusErrors = [1, n0, _UCATSEp,
|
|
2198
|
+
0, () => UpdateCostAllocationTagsStatusError$
|
|
2199
|
+
];
|
|
2200
|
+
var UtilizationsByTime = [1, n0, _UBT,
|
|
2201
|
+
0, () => UtilizationByTime$
|
|
2202
|
+
];
|
|
2203
|
+
var ComparisonMetrics = [2, n0, _CM,
|
|
2204
|
+
0, 0, () => ComparisonMetricValue$
|
|
2205
|
+
];
|
|
2206
|
+
var Metrics = [2, n0, _Me,
|
|
2207
|
+
0, 0, () => MetricValue$
|
|
2208
|
+
];
|
|
2209
|
+
var CreateAnomalyMonitor$ = [9, n0, _CAM,
|
|
2210
|
+
0, () => CreateAnomalyMonitorRequest$, () => CreateAnomalyMonitorResponse$
|
|
2211
|
+
];
|
|
2212
|
+
var CreateAnomalySubscription$ = [9, n0, _CAS,
|
|
2213
|
+
0, () => CreateAnomalySubscriptionRequest$, () => CreateAnomalySubscriptionResponse$
|
|
2214
|
+
];
|
|
2215
|
+
var CreateCostCategoryDefinition$ = [9, n0, _CCCD,
|
|
2216
|
+
0, () => CreateCostCategoryDefinitionRequest$, () => CreateCostCategoryDefinitionResponse$
|
|
2217
|
+
];
|
|
2218
|
+
var DeleteAnomalyMonitor$ = [9, n0, _DAM,
|
|
2219
|
+
0, () => DeleteAnomalyMonitorRequest$, () => DeleteAnomalyMonitorResponse$
|
|
2220
|
+
];
|
|
2221
|
+
var DeleteAnomalySubscription$ = [9, n0, _DAS,
|
|
2222
|
+
0, () => DeleteAnomalySubscriptionRequest$, () => DeleteAnomalySubscriptionResponse$
|
|
2223
|
+
];
|
|
2224
|
+
var DeleteCostCategoryDefinition$ = [9, n0, _DCCD,
|
|
2225
|
+
0, () => DeleteCostCategoryDefinitionRequest$, () => DeleteCostCategoryDefinitionResponse$
|
|
2226
|
+
];
|
|
2227
|
+
var DescribeCostCategoryDefinition$ = [9, n0, _DCCDe,
|
|
2228
|
+
0, () => DescribeCostCategoryDefinitionRequest$, () => DescribeCostCategoryDefinitionResponse$
|
|
2229
|
+
];
|
|
2230
|
+
var GetAnomalies$ = [9, n0, _GA,
|
|
2231
|
+
0, () => GetAnomaliesRequest$, () => GetAnomaliesResponse$
|
|
2232
|
+
];
|
|
2233
|
+
var GetAnomalyMonitors$ = [9, n0, _GAM,
|
|
2234
|
+
0, () => GetAnomalyMonitorsRequest$, () => GetAnomalyMonitorsResponse$
|
|
2235
|
+
];
|
|
2236
|
+
var GetAnomalySubscriptions$ = [9, n0, _GAS,
|
|
2237
|
+
0, () => GetAnomalySubscriptionsRequest$, () => GetAnomalySubscriptionsResponse$
|
|
2238
|
+
];
|
|
2239
|
+
var GetApproximateUsageRecords$ = [9, n0, _GAUR,
|
|
2240
|
+
0, () => GetApproximateUsageRecordsRequest$, () => GetApproximateUsageRecordsResponse$
|
|
2241
|
+
];
|
|
2242
|
+
var GetCommitmentPurchaseAnalysis$ = [9, n0, _GCPA,
|
|
2243
|
+
0, () => GetCommitmentPurchaseAnalysisRequest$, () => GetCommitmentPurchaseAnalysisResponse$
|
|
2244
|
+
];
|
|
2245
|
+
var GetCostAndUsage$ = [9, n0, _GCAU,
|
|
2246
|
+
0, () => GetCostAndUsageRequest$, () => GetCostAndUsageResponse$
|
|
2247
|
+
];
|
|
2248
|
+
var GetCostAndUsageComparisons$ = [9, n0, _GCAUC,
|
|
2249
|
+
0, () => GetCostAndUsageComparisonsRequest$, () => GetCostAndUsageComparisonsResponse$
|
|
2250
|
+
];
|
|
2251
|
+
var GetCostAndUsageWithResources$ = [9, n0, _GCAUWR,
|
|
2252
|
+
0, () => GetCostAndUsageWithResourcesRequest$, () => GetCostAndUsageWithResourcesResponse$
|
|
2253
|
+
];
|
|
2254
|
+
var GetCostCategories$ = [9, n0, _GCC,
|
|
2255
|
+
0, () => GetCostCategoriesRequest$, () => GetCostCategoriesResponse$
|
|
2256
|
+
];
|
|
2257
|
+
var GetCostComparisonDrivers$ = [9, n0, _GCCD,
|
|
2258
|
+
0, () => GetCostComparisonDriversRequest$, () => GetCostComparisonDriversResponse$
|
|
2259
|
+
];
|
|
2260
|
+
var GetCostForecast$ = [9, n0, _GCF,
|
|
2261
|
+
0, () => GetCostForecastRequest$, () => GetCostForecastResponse$
|
|
2262
|
+
];
|
|
2263
|
+
var GetDimensionValues$ = [9, n0, _GDV,
|
|
2264
|
+
0, () => GetDimensionValuesRequest$, () => GetDimensionValuesResponse$
|
|
2265
|
+
];
|
|
2266
|
+
var GetReservationCoverage$ = [9, n0, _GRC,
|
|
2267
|
+
0, () => GetReservationCoverageRequest$, () => GetReservationCoverageResponse$
|
|
2268
|
+
];
|
|
2269
|
+
var GetReservationPurchaseRecommendation$ = [9, n0, _GRPR,
|
|
2270
|
+
0, () => GetReservationPurchaseRecommendationRequest$, () => GetReservationPurchaseRecommendationResponse$
|
|
2271
|
+
];
|
|
2272
|
+
var GetReservationUtilization$ = [9, n0, _GRU,
|
|
2273
|
+
0, () => GetReservationUtilizationRequest$, () => GetReservationUtilizationResponse$
|
|
2274
|
+
];
|
|
2275
|
+
var GetRightsizingRecommendation$ = [9, n0, _GRR,
|
|
2276
|
+
0, () => GetRightsizingRecommendationRequest$, () => GetRightsizingRecommendationResponse$
|
|
2277
|
+
];
|
|
2278
|
+
var GetSavingsPlanPurchaseRecommendationDetails$ = [9, n0, _GSPPRD,
|
|
2279
|
+
0, () => GetSavingsPlanPurchaseRecommendationDetailsRequest$, () => GetSavingsPlanPurchaseRecommendationDetailsResponse$
|
|
2280
|
+
];
|
|
2281
|
+
var GetSavingsPlansCoverage$ = [9, n0, _GSPC,
|
|
2282
|
+
0, () => GetSavingsPlansCoverageRequest$, () => GetSavingsPlansCoverageResponse$
|
|
2283
|
+
];
|
|
2284
|
+
var GetSavingsPlansPurchaseRecommendation$ = [9, n0, _GSPPR,
|
|
2285
|
+
0, () => GetSavingsPlansPurchaseRecommendationRequest$, () => GetSavingsPlansPurchaseRecommendationResponse$
|
|
2286
|
+
];
|
|
2287
|
+
var GetSavingsPlansUtilization$ = [9, n0, _GSPU,
|
|
2288
|
+
0, () => GetSavingsPlansUtilizationRequest$, () => GetSavingsPlansUtilizationResponse$
|
|
2289
|
+
];
|
|
2290
|
+
var GetSavingsPlansUtilizationDetails$ = [9, n0, _GSPUD,
|
|
2291
|
+
0, () => GetSavingsPlansUtilizationDetailsRequest$, () => GetSavingsPlansUtilizationDetailsResponse$
|
|
2292
|
+
];
|
|
2293
|
+
var GetTags$ = [9, n0, _GTe,
|
|
2294
|
+
0, () => GetTagsRequest$, () => GetTagsResponse$
|
|
2295
|
+
];
|
|
2296
|
+
var GetUsageForecast$ = [9, n0, _GUF,
|
|
2297
|
+
0, () => GetUsageForecastRequest$, () => GetUsageForecastResponse$
|
|
2298
|
+
];
|
|
2299
|
+
var ListCommitmentPurchaseAnalyses$ = [9, n0, _LCPA,
|
|
2300
|
+
0, () => ListCommitmentPurchaseAnalysesRequest$, () => ListCommitmentPurchaseAnalysesResponse$
|
|
2301
|
+
];
|
|
2302
|
+
var ListCostAllocationTagBackfillHistory$ = [9, n0, _LCATBH,
|
|
2303
|
+
0, () => ListCostAllocationTagBackfillHistoryRequest$, () => ListCostAllocationTagBackfillHistoryResponse$
|
|
2304
|
+
];
|
|
2305
|
+
var ListCostAllocationTags$ = [9, n0, _LCAT,
|
|
2306
|
+
0, () => ListCostAllocationTagsRequest$, () => ListCostAllocationTagsResponse$
|
|
2307
|
+
];
|
|
2308
|
+
var ListCostCategoryDefinitions$ = [9, n0, _LCCD,
|
|
2309
|
+
0, () => ListCostCategoryDefinitionsRequest$, () => ListCostCategoryDefinitionsResponse$
|
|
2310
|
+
];
|
|
2311
|
+
var ListCostCategoryResourceAssociations$ = [9, n0, _LCCRA,
|
|
2312
|
+
0, () => ListCostCategoryResourceAssociationsRequest$, () => ListCostCategoryResourceAssociationsResponse$
|
|
2313
|
+
];
|
|
2314
|
+
var ListSavingsPlansPurchaseRecommendationGeneration$ = [9, n0, _LSPPRG,
|
|
2315
|
+
0, () => ListSavingsPlansPurchaseRecommendationGenerationRequest$, () => ListSavingsPlansPurchaseRecommendationGenerationResponse$
|
|
2316
|
+
];
|
|
2317
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2318
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2319
|
+
];
|
|
2320
|
+
var ProvideAnomalyFeedback$ = [9, n0, _PAF,
|
|
2321
|
+
0, () => ProvideAnomalyFeedbackRequest$, () => ProvideAnomalyFeedbackResponse$
|
|
2322
|
+
];
|
|
2323
|
+
var StartCommitmentPurchaseAnalysis$ = [9, n0, _SCPA,
|
|
2324
|
+
0, () => StartCommitmentPurchaseAnalysisRequest$, () => StartCommitmentPurchaseAnalysisResponse$
|
|
2325
|
+
];
|
|
2326
|
+
var StartCostAllocationTagBackfill$ = [9, n0, _SCATB,
|
|
2327
|
+
0, () => StartCostAllocationTagBackfillRequest$, () => StartCostAllocationTagBackfillResponse$
|
|
2328
|
+
];
|
|
2329
|
+
var StartSavingsPlansPurchaseRecommendationGeneration$ = [9, n0, _SSPPRG,
|
|
2330
|
+
0, () => StartSavingsPlansPurchaseRecommendationGenerationRequest$, () => StartSavingsPlansPurchaseRecommendationGenerationResponse$
|
|
2331
|
+
];
|
|
2332
|
+
var TagResource$ = [9, n0, _TRa,
|
|
2333
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2334
|
+
];
|
|
2335
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2336
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2337
|
+
];
|
|
2338
|
+
var UpdateAnomalyMonitor$ = [9, n0, _UAM,
|
|
2339
|
+
0, () => UpdateAnomalyMonitorRequest$, () => UpdateAnomalyMonitorResponse$
|
|
2340
|
+
];
|
|
2341
|
+
var UpdateAnomalySubscription$ = [9, n0, _UAS,
|
|
2342
|
+
0, () => UpdateAnomalySubscriptionRequest$, () => UpdateAnomalySubscriptionResponse$
|
|
2343
|
+
];
|
|
2344
|
+
var UpdateCostAllocationTagsStatus$ = [9, n0, _UCATS,
|
|
2345
|
+
0, () => UpdateCostAllocationTagsStatusRequest$, () => UpdateCostAllocationTagsStatusResponse$
|
|
2346
|
+
];
|
|
2347
|
+
var UpdateCostCategoryDefinition$ = [9, n0, _UCCD,
|
|
2348
|
+
0, () => UpdateCostCategoryDefinitionRequest$, () => UpdateCostCategoryDefinitionResponse$
|
|
2349
|
+
];
|
|
2350
|
+
|
|
2351
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2352
|
+
return {
|
|
2353
|
+
apiVersion: "2017-10-25",
|
|
2354
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2355
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2356
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2357
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2358
|
+
extensions: config?.extensions ?? [],
|
|
2359
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCostExplorerHttpAuthSchemeProvider,
|
|
2360
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2361
|
+
{
|
|
2362
|
+
schemeId: "aws.auth#sigv4",
|
|
2363
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2364
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2365
|
+
},
|
|
2366
|
+
],
|
|
2367
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2368
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2369
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2370
|
+
defaultNamespace: "com.amazonaws.costexplorer",
|
|
2371
|
+
errorTypeRegistries,
|
|
2372
|
+
version: "2017-10-25",
|
|
2373
|
+
serviceTarget: "AWSInsightsIndexService",
|
|
2374
|
+
},
|
|
2375
|
+
serviceId: config?.serviceId ?? "Cost Explorer",
|
|
2376
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2377
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2378
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2379
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2380
|
+
};
|
|
2381
|
+
};
|
|
2382
|
+
|
|
2383
|
+
const getRuntimeConfig = (config) => {
|
|
2384
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2385
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2386
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2387
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2388
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2389
|
+
const loaderConfig = {
|
|
2390
|
+
profile: config?.profile,
|
|
2391
|
+
logger: clientSharedValues.logger,
|
|
2392
|
+
};
|
|
2393
|
+
return {
|
|
2394
|
+
...clientSharedValues,
|
|
2395
|
+
...config,
|
|
2396
|
+
runtime: "node",
|
|
2397
|
+
defaultsMode,
|
|
2398
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2399
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2400
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2401
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2402
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2403
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2404
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2405
|
+
retryMode: config?.retryMode ??
|
|
2406
|
+
loadConfig({
|
|
2407
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2408
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2409
|
+
}, config),
|
|
2410
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2411
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2412
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2413
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2414
|
+
};
|
|
2415
|
+
};
|
|
2416
|
+
|
|
34
2417
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2418
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2419
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1023,94 +3406,368 @@ const GenerationStatus = {
|
|
|
1023
3406
|
};
|
|
1024
3407
|
|
|
1025
3408
|
exports.AccountScope = AccountScope;
|
|
3409
|
+
exports.AnalysisDetails$ = AnalysisDetails$;
|
|
3410
|
+
exports.AnalysisNotFoundException = AnalysisNotFoundException;
|
|
3411
|
+
exports.AnalysisNotFoundException$ = AnalysisNotFoundException$;
|
|
1026
3412
|
exports.AnalysisStatus = AnalysisStatus;
|
|
3413
|
+
exports.AnalysisSummary$ = AnalysisSummary$;
|
|
1027
3414
|
exports.AnalysisType = AnalysisType;
|
|
3415
|
+
exports.Anomaly$ = Anomaly$;
|
|
3416
|
+
exports.AnomalyDateInterval$ = AnomalyDateInterval$;
|
|
1028
3417
|
exports.AnomalyFeedbackType = AnomalyFeedbackType;
|
|
3418
|
+
exports.AnomalyMonitor$ = AnomalyMonitor$;
|
|
3419
|
+
exports.AnomalyScore$ = AnomalyScore$;
|
|
3420
|
+
exports.AnomalySubscription$ = AnomalySubscription$;
|
|
1029
3421
|
exports.AnomalySubscriptionFrequency = AnomalySubscriptionFrequency;
|
|
1030
3422
|
exports.ApproximationDimension = ApproximationDimension;
|
|
3423
|
+
exports.BackfillLimitExceededException = BackfillLimitExceededException;
|
|
3424
|
+
exports.BackfillLimitExceededException$ = BackfillLimitExceededException$;
|
|
3425
|
+
exports.BillExpirationException = BillExpirationException;
|
|
3426
|
+
exports.BillExpirationException$ = BillExpirationException$;
|
|
3427
|
+
exports.BillingViewHealthStatusException = BillingViewHealthStatusException;
|
|
3428
|
+
exports.BillingViewHealthStatusException$ = BillingViewHealthStatusException$;
|
|
3429
|
+
exports.CommitmentPurchaseAnalysisConfiguration$ = CommitmentPurchaseAnalysisConfiguration$;
|
|
3430
|
+
exports.ComparisonMetricValue$ = ComparisonMetricValue$;
|
|
1031
3431
|
exports.Context = Context;
|
|
3432
|
+
exports.CostAllocationTag$ = CostAllocationTag$;
|
|
3433
|
+
exports.CostAllocationTagBackfillRequest$ = CostAllocationTagBackfillRequest$;
|
|
1032
3434
|
exports.CostAllocationTagBackfillStatus = CostAllocationTagBackfillStatus;
|
|
1033
3435
|
exports.CostAllocationTagStatus = CostAllocationTagStatus;
|
|
3436
|
+
exports.CostAllocationTagStatusEntry$ = CostAllocationTagStatusEntry$;
|
|
1034
3437
|
exports.CostAllocationTagType = CostAllocationTagType;
|
|
3438
|
+
exports.CostAndUsageComparison$ = CostAndUsageComparison$;
|
|
3439
|
+
exports.CostCategory$ = CostCategory$;
|
|
3440
|
+
exports.CostCategoryInheritedValueDimension$ = CostCategoryInheritedValueDimension$;
|
|
1035
3441
|
exports.CostCategoryInheritedValueDimensionName = CostCategoryInheritedValueDimensionName;
|
|
3442
|
+
exports.CostCategoryProcessingStatus$ = CostCategoryProcessingStatus$;
|
|
3443
|
+
exports.CostCategoryReference$ = CostCategoryReference$;
|
|
3444
|
+
exports.CostCategoryResourceAssociation$ = CostCategoryResourceAssociation$;
|
|
3445
|
+
exports.CostCategoryRule$ = CostCategoryRule$;
|
|
1036
3446
|
exports.CostCategoryRuleType = CostCategoryRuleType;
|
|
1037
3447
|
exports.CostCategoryRuleVersion = CostCategoryRuleVersion;
|
|
1038
3448
|
exports.CostCategorySplitChargeMethod = CostCategorySplitChargeMethod;
|
|
3449
|
+
exports.CostCategorySplitChargeRule$ = CostCategorySplitChargeRule$;
|
|
3450
|
+
exports.CostCategorySplitChargeRuleParameter$ = CostCategorySplitChargeRuleParameter$;
|
|
1039
3451
|
exports.CostCategorySplitChargeRuleParameterType = CostCategorySplitChargeRuleParameterType;
|
|
1040
3452
|
exports.CostCategoryStatus = CostCategoryStatus;
|
|
1041
3453
|
exports.CostCategoryStatusComponent = CostCategoryStatusComponent;
|
|
3454
|
+
exports.CostCategoryValues$ = CostCategoryValues$;
|
|
3455
|
+
exports.CostComparisonDriver$ = CostComparisonDriver$;
|
|
3456
|
+
exports.CostDriver$ = CostDriver$;
|
|
1042
3457
|
exports.CostExplorer = CostExplorer;
|
|
1043
3458
|
exports.CostExplorerClient = CostExplorerClient;
|
|
3459
|
+
exports.CostExplorerServiceException = CostExplorerServiceException;
|
|
3460
|
+
exports.CostExplorerServiceException$ = CostExplorerServiceException$;
|
|
3461
|
+
exports.Coverage$ = Coverage$;
|
|
3462
|
+
exports.CoverageByTime$ = CoverageByTime$;
|
|
3463
|
+
exports.CoverageCost$ = CoverageCost$;
|
|
3464
|
+
exports.CoverageHours$ = CoverageHours$;
|
|
3465
|
+
exports.CoverageNormalizedUnits$ = CoverageNormalizedUnits$;
|
|
3466
|
+
exports.CreateAnomalyMonitor$ = CreateAnomalyMonitor$;
|
|
1044
3467
|
exports.CreateAnomalyMonitorCommand = CreateAnomalyMonitorCommand;
|
|
3468
|
+
exports.CreateAnomalyMonitorRequest$ = CreateAnomalyMonitorRequest$;
|
|
3469
|
+
exports.CreateAnomalyMonitorResponse$ = CreateAnomalyMonitorResponse$;
|
|
3470
|
+
exports.CreateAnomalySubscription$ = CreateAnomalySubscription$;
|
|
1045
3471
|
exports.CreateAnomalySubscriptionCommand = CreateAnomalySubscriptionCommand;
|
|
3472
|
+
exports.CreateAnomalySubscriptionRequest$ = CreateAnomalySubscriptionRequest$;
|
|
3473
|
+
exports.CreateAnomalySubscriptionResponse$ = CreateAnomalySubscriptionResponse$;
|
|
3474
|
+
exports.CreateCostCategoryDefinition$ = CreateCostCategoryDefinition$;
|
|
1046
3475
|
exports.CreateCostCategoryDefinitionCommand = CreateCostCategoryDefinitionCommand;
|
|
3476
|
+
exports.CreateCostCategoryDefinitionRequest$ = CreateCostCategoryDefinitionRequest$;
|
|
3477
|
+
exports.CreateCostCategoryDefinitionResponse$ = CreateCostCategoryDefinitionResponse$;
|
|
3478
|
+
exports.CurrentInstance$ = CurrentInstance$;
|
|
3479
|
+
exports.DataUnavailableException = DataUnavailableException;
|
|
3480
|
+
exports.DataUnavailableException$ = DataUnavailableException$;
|
|
3481
|
+
exports.DateInterval$ = DateInterval$;
|
|
3482
|
+
exports.DeleteAnomalyMonitor$ = DeleteAnomalyMonitor$;
|
|
1047
3483
|
exports.DeleteAnomalyMonitorCommand = DeleteAnomalyMonitorCommand;
|
|
3484
|
+
exports.DeleteAnomalyMonitorRequest$ = DeleteAnomalyMonitorRequest$;
|
|
3485
|
+
exports.DeleteAnomalyMonitorResponse$ = DeleteAnomalyMonitorResponse$;
|
|
3486
|
+
exports.DeleteAnomalySubscription$ = DeleteAnomalySubscription$;
|
|
1048
3487
|
exports.DeleteAnomalySubscriptionCommand = DeleteAnomalySubscriptionCommand;
|
|
3488
|
+
exports.DeleteAnomalySubscriptionRequest$ = DeleteAnomalySubscriptionRequest$;
|
|
3489
|
+
exports.DeleteAnomalySubscriptionResponse$ = DeleteAnomalySubscriptionResponse$;
|
|
3490
|
+
exports.DeleteCostCategoryDefinition$ = DeleteCostCategoryDefinition$;
|
|
1049
3491
|
exports.DeleteCostCategoryDefinitionCommand = DeleteCostCategoryDefinitionCommand;
|
|
3492
|
+
exports.DeleteCostCategoryDefinitionRequest$ = DeleteCostCategoryDefinitionRequest$;
|
|
3493
|
+
exports.DeleteCostCategoryDefinitionResponse$ = DeleteCostCategoryDefinitionResponse$;
|
|
3494
|
+
exports.DescribeCostCategoryDefinition$ = DescribeCostCategoryDefinition$;
|
|
1050
3495
|
exports.DescribeCostCategoryDefinitionCommand = DescribeCostCategoryDefinitionCommand;
|
|
3496
|
+
exports.DescribeCostCategoryDefinitionRequest$ = DescribeCostCategoryDefinitionRequest$;
|
|
3497
|
+
exports.DescribeCostCategoryDefinitionResponse$ = DescribeCostCategoryDefinitionResponse$;
|
|
1051
3498
|
exports.Dimension = Dimension;
|
|
3499
|
+
exports.DimensionValues$ = DimensionValues$;
|
|
3500
|
+
exports.DimensionValuesWithAttributes$ = DimensionValuesWithAttributes$;
|
|
3501
|
+
exports.DiskResourceUtilization$ = DiskResourceUtilization$;
|
|
3502
|
+
exports.DynamoDBCapacityDetails$ = DynamoDBCapacityDetails$;
|
|
3503
|
+
exports.EBSResourceUtilization$ = EBSResourceUtilization$;
|
|
3504
|
+
exports.EC2InstanceDetails$ = EC2InstanceDetails$;
|
|
3505
|
+
exports.EC2ResourceDetails$ = EC2ResourceDetails$;
|
|
3506
|
+
exports.EC2ResourceUtilization$ = EC2ResourceUtilization$;
|
|
3507
|
+
exports.EC2Specification$ = EC2Specification$;
|
|
3508
|
+
exports.ESInstanceDetails$ = ESInstanceDetails$;
|
|
3509
|
+
exports.ElastiCacheInstanceDetails$ = ElastiCacheInstanceDetails$;
|
|
1052
3510
|
exports.ErrorCode = ErrorCode;
|
|
3511
|
+
exports.Expression$ = Expression$;
|
|
1053
3512
|
exports.FindingReasonCode = FindingReasonCode;
|
|
3513
|
+
exports.ForecastResult$ = ForecastResult$;
|
|
3514
|
+
exports.GenerationExistsException = GenerationExistsException;
|
|
3515
|
+
exports.GenerationExistsException$ = GenerationExistsException$;
|
|
1054
3516
|
exports.GenerationStatus = GenerationStatus;
|
|
3517
|
+
exports.GenerationSummary$ = GenerationSummary$;
|
|
3518
|
+
exports.GetAnomalies$ = GetAnomalies$;
|
|
1055
3519
|
exports.GetAnomaliesCommand = GetAnomaliesCommand;
|
|
3520
|
+
exports.GetAnomaliesRequest$ = GetAnomaliesRequest$;
|
|
3521
|
+
exports.GetAnomaliesResponse$ = GetAnomaliesResponse$;
|
|
3522
|
+
exports.GetAnomalyMonitors$ = GetAnomalyMonitors$;
|
|
1056
3523
|
exports.GetAnomalyMonitorsCommand = GetAnomalyMonitorsCommand;
|
|
3524
|
+
exports.GetAnomalyMonitorsRequest$ = GetAnomalyMonitorsRequest$;
|
|
3525
|
+
exports.GetAnomalyMonitorsResponse$ = GetAnomalyMonitorsResponse$;
|
|
3526
|
+
exports.GetAnomalySubscriptions$ = GetAnomalySubscriptions$;
|
|
1057
3527
|
exports.GetAnomalySubscriptionsCommand = GetAnomalySubscriptionsCommand;
|
|
3528
|
+
exports.GetAnomalySubscriptionsRequest$ = GetAnomalySubscriptionsRequest$;
|
|
3529
|
+
exports.GetAnomalySubscriptionsResponse$ = GetAnomalySubscriptionsResponse$;
|
|
3530
|
+
exports.GetApproximateUsageRecords$ = GetApproximateUsageRecords$;
|
|
1058
3531
|
exports.GetApproximateUsageRecordsCommand = GetApproximateUsageRecordsCommand;
|
|
3532
|
+
exports.GetApproximateUsageRecordsRequest$ = GetApproximateUsageRecordsRequest$;
|
|
3533
|
+
exports.GetApproximateUsageRecordsResponse$ = GetApproximateUsageRecordsResponse$;
|
|
3534
|
+
exports.GetCommitmentPurchaseAnalysis$ = GetCommitmentPurchaseAnalysis$;
|
|
1059
3535
|
exports.GetCommitmentPurchaseAnalysisCommand = GetCommitmentPurchaseAnalysisCommand;
|
|
3536
|
+
exports.GetCommitmentPurchaseAnalysisRequest$ = GetCommitmentPurchaseAnalysisRequest$;
|
|
3537
|
+
exports.GetCommitmentPurchaseAnalysisResponse$ = GetCommitmentPurchaseAnalysisResponse$;
|
|
3538
|
+
exports.GetCostAndUsage$ = GetCostAndUsage$;
|
|
1060
3539
|
exports.GetCostAndUsageCommand = GetCostAndUsageCommand;
|
|
3540
|
+
exports.GetCostAndUsageComparisons$ = GetCostAndUsageComparisons$;
|
|
1061
3541
|
exports.GetCostAndUsageComparisonsCommand = GetCostAndUsageComparisonsCommand;
|
|
3542
|
+
exports.GetCostAndUsageComparisonsRequest$ = GetCostAndUsageComparisonsRequest$;
|
|
3543
|
+
exports.GetCostAndUsageComparisonsResponse$ = GetCostAndUsageComparisonsResponse$;
|
|
3544
|
+
exports.GetCostAndUsageRequest$ = GetCostAndUsageRequest$;
|
|
3545
|
+
exports.GetCostAndUsageResponse$ = GetCostAndUsageResponse$;
|
|
3546
|
+
exports.GetCostAndUsageWithResources$ = GetCostAndUsageWithResources$;
|
|
1062
3547
|
exports.GetCostAndUsageWithResourcesCommand = GetCostAndUsageWithResourcesCommand;
|
|
3548
|
+
exports.GetCostAndUsageWithResourcesRequest$ = GetCostAndUsageWithResourcesRequest$;
|
|
3549
|
+
exports.GetCostAndUsageWithResourcesResponse$ = GetCostAndUsageWithResourcesResponse$;
|
|
3550
|
+
exports.GetCostCategories$ = GetCostCategories$;
|
|
1063
3551
|
exports.GetCostCategoriesCommand = GetCostCategoriesCommand;
|
|
3552
|
+
exports.GetCostCategoriesRequest$ = GetCostCategoriesRequest$;
|
|
3553
|
+
exports.GetCostCategoriesResponse$ = GetCostCategoriesResponse$;
|
|
3554
|
+
exports.GetCostComparisonDrivers$ = GetCostComparisonDrivers$;
|
|
1064
3555
|
exports.GetCostComparisonDriversCommand = GetCostComparisonDriversCommand;
|
|
3556
|
+
exports.GetCostComparisonDriversRequest$ = GetCostComparisonDriversRequest$;
|
|
3557
|
+
exports.GetCostComparisonDriversResponse$ = GetCostComparisonDriversResponse$;
|
|
3558
|
+
exports.GetCostForecast$ = GetCostForecast$;
|
|
1065
3559
|
exports.GetCostForecastCommand = GetCostForecastCommand;
|
|
3560
|
+
exports.GetCostForecastRequest$ = GetCostForecastRequest$;
|
|
3561
|
+
exports.GetCostForecastResponse$ = GetCostForecastResponse$;
|
|
3562
|
+
exports.GetDimensionValues$ = GetDimensionValues$;
|
|
1066
3563
|
exports.GetDimensionValuesCommand = GetDimensionValuesCommand;
|
|
3564
|
+
exports.GetDimensionValuesRequest$ = GetDimensionValuesRequest$;
|
|
3565
|
+
exports.GetDimensionValuesResponse$ = GetDimensionValuesResponse$;
|
|
3566
|
+
exports.GetReservationCoverage$ = GetReservationCoverage$;
|
|
1067
3567
|
exports.GetReservationCoverageCommand = GetReservationCoverageCommand;
|
|
3568
|
+
exports.GetReservationCoverageRequest$ = GetReservationCoverageRequest$;
|
|
3569
|
+
exports.GetReservationCoverageResponse$ = GetReservationCoverageResponse$;
|
|
3570
|
+
exports.GetReservationPurchaseRecommendation$ = GetReservationPurchaseRecommendation$;
|
|
1068
3571
|
exports.GetReservationPurchaseRecommendationCommand = GetReservationPurchaseRecommendationCommand;
|
|
3572
|
+
exports.GetReservationPurchaseRecommendationRequest$ = GetReservationPurchaseRecommendationRequest$;
|
|
3573
|
+
exports.GetReservationPurchaseRecommendationResponse$ = GetReservationPurchaseRecommendationResponse$;
|
|
3574
|
+
exports.GetReservationUtilization$ = GetReservationUtilization$;
|
|
1069
3575
|
exports.GetReservationUtilizationCommand = GetReservationUtilizationCommand;
|
|
3576
|
+
exports.GetReservationUtilizationRequest$ = GetReservationUtilizationRequest$;
|
|
3577
|
+
exports.GetReservationUtilizationResponse$ = GetReservationUtilizationResponse$;
|
|
3578
|
+
exports.GetRightsizingRecommendation$ = GetRightsizingRecommendation$;
|
|
1070
3579
|
exports.GetRightsizingRecommendationCommand = GetRightsizingRecommendationCommand;
|
|
3580
|
+
exports.GetRightsizingRecommendationRequest$ = GetRightsizingRecommendationRequest$;
|
|
3581
|
+
exports.GetRightsizingRecommendationResponse$ = GetRightsizingRecommendationResponse$;
|
|
3582
|
+
exports.GetSavingsPlanPurchaseRecommendationDetails$ = GetSavingsPlanPurchaseRecommendationDetails$;
|
|
1071
3583
|
exports.GetSavingsPlanPurchaseRecommendationDetailsCommand = GetSavingsPlanPurchaseRecommendationDetailsCommand;
|
|
3584
|
+
exports.GetSavingsPlanPurchaseRecommendationDetailsRequest$ = GetSavingsPlanPurchaseRecommendationDetailsRequest$;
|
|
3585
|
+
exports.GetSavingsPlanPurchaseRecommendationDetailsResponse$ = GetSavingsPlanPurchaseRecommendationDetailsResponse$;
|
|
3586
|
+
exports.GetSavingsPlansCoverage$ = GetSavingsPlansCoverage$;
|
|
1072
3587
|
exports.GetSavingsPlansCoverageCommand = GetSavingsPlansCoverageCommand;
|
|
3588
|
+
exports.GetSavingsPlansCoverageRequest$ = GetSavingsPlansCoverageRequest$;
|
|
3589
|
+
exports.GetSavingsPlansCoverageResponse$ = GetSavingsPlansCoverageResponse$;
|
|
3590
|
+
exports.GetSavingsPlansPurchaseRecommendation$ = GetSavingsPlansPurchaseRecommendation$;
|
|
1073
3591
|
exports.GetSavingsPlansPurchaseRecommendationCommand = GetSavingsPlansPurchaseRecommendationCommand;
|
|
3592
|
+
exports.GetSavingsPlansPurchaseRecommendationRequest$ = GetSavingsPlansPurchaseRecommendationRequest$;
|
|
3593
|
+
exports.GetSavingsPlansPurchaseRecommendationResponse$ = GetSavingsPlansPurchaseRecommendationResponse$;
|
|
3594
|
+
exports.GetSavingsPlansUtilization$ = GetSavingsPlansUtilization$;
|
|
1074
3595
|
exports.GetSavingsPlansUtilizationCommand = GetSavingsPlansUtilizationCommand;
|
|
3596
|
+
exports.GetSavingsPlansUtilizationDetails$ = GetSavingsPlansUtilizationDetails$;
|
|
1075
3597
|
exports.GetSavingsPlansUtilizationDetailsCommand = GetSavingsPlansUtilizationDetailsCommand;
|
|
3598
|
+
exports.GetSavingsPlansUtilizationDetailsRequest$ = GetSavingsPlansUtilizationDetailsRequest$;
|
|
3599
|
+
exports.GetSavingsPlansUtilizationDetailsResponse$ = GetSavingsPlansUtilizationDetailsResponse$;
|
|
3600
|
+
exports.GetSavingsPlansUtilizationRequest$ = GetSavingsPlansUtilizationRequest$;
|
|
3601
|
+
exports.GetSavingsPlansUtilizationResponse$ = GetSavingsPlansUtilizationResponse$;
|
|
3602
|
+
exports.GetTags$ = GetTags$;
|
|
1076
3603
|
exports.GetTagsCommand = GetTagsCommand;
|
|
3604
|
+
exports.GetTagsRequest$ = GetTagsRequest$;
|
|
3605
|
+
exports.GetTagsResponse$ = GetTagsResponse$;
|
|
3606
|
+
exports.GetUsageForecast$ = GetUsageForecast$;
|
|
1077
3607
|
exports.GetUsageForecastCommand = GetUsageForecastCommand;
|
|
3608
|
+
exports.GetUsageForecastRequest$ = GetUsageForecastRequest$;
|
|
3609
|
+
exports.GetUsageForecastResponse$ = GetUsageForecastResponse$;
|
|
1078
3610
|
exports.Granularity = Granularity;
|
|
3611
|
+
exports.Group$ = Group$;
|
|
3612
|
+
exports.GroupDefinition$ = GroupDefinition$;
|
|
1079
3613
|
exports.GroupDefinitionType = GroupDefinitionType;
|
|
3614
|
+
exports.Impact$ = Impact$;
|
|
3615
|
+
exports.InstanceDetails$ = InstanceDetails$;
|
|
3616
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
3617
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
3618
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3619
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3620
|
+
exports.ListCommitmentPurchaseAnalyses$ = ListCommitmentPurchaseAnalyses$;
|
|
1080
3621
|
exports.ListCommitmentPurchaseAnalysesCommand = ListCommitmentPurchaseAnalysesCommand;
|
|
3622
|
+
exports.ListCommitmentPurchaseAnalysesRequest$ = ListCommitmentPurchaseAnalysesRequest$;
|
|
3623
|
+
exports.ListCommitmentPurchaseAnalysesResponse$ = ListCommitmentPurchaseAnalysesResponse$;
|
|
3624
|
+
exports.ListCostAllocationTagBackfillHistory$ = ListCostAllocationTagBackfillHistory$;
|
|
1081
3625
|
exports.ListCostAllocationTagBackfillHistoryCommand = ListCostAllocationTagBackfillHistoryCommand;
|
|
3626
|
+
exports.ListCostAllocationTagBackfillHistoryRequest$ = ListCostAllocationTagBackfillHistoryRequest$;
|
|
3627
|
+
exports.ListCostAllocationTagBackfillHistoryResponse$ = ListCostAllocationTagBackfillHistoryResponse$;
|
|
3628
|
+
exports.ListCostAllocationTags$ = ListCostAllocationTags$;
|
|
1082
3629
|
exports.ListCostAllocationTagsCommand = ListCostAllocationTagsCommand;
|
|
3630
|
+
exports.ListCostAllocationTagsRequest$ = ListCostAllocationTagsRequest$;
|
|
3631
|
+
exports.ListCostAllocationTagsResponse$ = ListCostAllocationTagsResponse$;
|
|
3632
|
+
exports.ListCostCategoryDefinitions$ = ListCostCategoryDefinitions$;
|
|
1083
3633
|
exports.ListCostCategoryDefinitionsCommand = ListCostCategoryDefinitionsCommand;
|
|
3634
|
+
exports.ListCostCategoryDefinitionsRequest$ = ListCostCategoryDefinitionsRequest$;
|
|
3635
|
+
exports.ListCostCategoryDefinitionsResponse$ = ListCostCategoryDefinitionsResponse$;
|
|
3636
|
+
exports.ListCostCategoryResourceAssociations$ = ListCostCategoryResourceAssociations$;
|
|
1084
3637
|
exports.ListCostCategoryResourceAssociationsCommand = ListCostCategoryResourceAssociationsCommand;
|
|
3638
|
+
exports.ListCostCategoryResourceAssociationsRequest$ = ListCostCategoryResourceAssociationsRequest$;
|
|
3639
|
+
exports.ListCostCategoryResourceAssociationsResponse$ = ListCostCategoryResourceAssociationsResponse$;
|
|
3640
|
+
exports.ListSavingsPlansPurchaseRecommendationGeneration$ = ListSavingsPlansPurchaseRecommendationGeneration$;
|
|
1085
3641
|
exports.ListSavingsPlansPurchaseRecommendationGenerationCommand = ListSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
3642
|
+
exports.ListSavingsPlansPurchaseRecommendationGenerationRequest$ = ListSavingsPlansPurchaseRecommendationGenerationRequest$;
|
|
3643
|
+
exports.ListSavingsPlansPurchaseRecommendationGenerationResponse$ = ListSavingsPlansPurchaseRecommendationGenerationResponse$;
|
|
3644
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1086
3645
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3646
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3647
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1087
3648
|
exports.LookbackPeriodInDays = LookbackPeriodInDays;
|
|
1088
3649
|
exports.MatchOption = MatchOption;
|
|
3650
|
+
exports.MemoryDBInstanceDetails$ = MemoryDBInstanceDetails$;
|
|
1089
3651
|
exports.Metric = Metric;
|
|
3652
|
+
exports.MetricValue$ = MetricValue$;
|
|
3653
|
+
exports.ModifyRecommendationDetail$ = ModifyRecommendationDetail$;
|
|
1090
3654
|
exports.MonitorDimension = MonitorDimension;
|
|
1091
3655
|
exports.MonitorType = MonitorType;
|
|
3656
|
+
exports.NetworkResourceUtilization$ = NetworkResourceUtilization$;
|
|
1092
3657
|
exports.NumericOperator = NumericOperator;
|
|
1093
3658
|
exports.OfferingClass = OfferingClass;
|
|
1094
3659
|
exports.PaymentOption = PaymentOption;
|
|
1095
3660
|
exports.PlatformDifference = PlatformDifference;
|
|
3661
|
+
exports.ProvideAnomalyFeedback$ = ProvideAnomalyFeedback$;
|
|
1096
3662
|
exports.ProvideAnomalyFeedbackCommand = ProvideAnomalyFeedbackCommand;
|
|
3663
|
+
exports.ProvideAnomalyFeedbackRequest$ = ProvideAnomalyFeedbackRequest$;
|
|
3664
|
+
exports.ProvideAnomalyFeedbackResponse$ = ProvideAnomalyFeedbackResponse$;
|
|
3665
|
+
exports.RDSInstanceDetails$ = RDSInstanceDetails$;
|
|
3666
|
+
exports.RecommendationDetailData$ = RecommendationDetailData$;
|
|
3667
|
+
exports.RecommendationDetailHourlyMetrics$ = RecommendationDetailHourlyMetrics$;
|
|
1097
3668
|
exports.RecommendationTarget = RecommendationTarget;
|
|
3669
|
+
exports.RedshiftInstanceDetails$ = RedshiftInstanceDetails$;
|
|
3670
|
+
exports.RequestChangedException = RequestChangedException;
|
|
3671
|
+
exports.RequestChangedException$ = RequestChangedException$;
|
|
3672
|
+
exports.ReservationAggregates$ = ReservationAggregates$;
|
|
3673
|
+
exports.ReservationCoverageGroup$ = ReservationCoverageGroup$;
|
|
3674
|
+
exports.ReservationPurchaseRecommendation$ = ReservationPurchaseRecommendation$;
|
|
3675
|
+
exports.ReservationPurchaseRecommendationDetail$ = ReservationPurchaseRecommendationDetail$;
|
|
3676
|
+
exports.ReservationPurchaseRecommendationMetadata$ = ReservationPurchaseRecommendationMetadata$;
|
|
3677
|
+
exports.ReservationPurchaseRecommendationSummary$ = ReservationPurchaseRecommendationSummary$;
|
|
3678
|
+
exports.ReservationUtilizationGroup$ = ReservationUtilizationGroup$;
|
|
3679
|
+
exports.ReservedCapacityDetails$ = ReservedCapacityDetails$;
|
|
3680
|
+
exports.ResourceDetails$ = ResourceDetails$;
|
|
3681
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3682
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3683
|
+
exports.ResourceTag$ = ResourceTag$;
|
|
3684
|
+
exports.ResourceUtilization$ = ResourceUtilization$;
|
|
3685
|
+
exports.ResultByTime$ = ResultByTime$;
|
|
3686
|
+
exports.RightsizingRecommendation$ = RightsizingRecommendation$;
|
|
3687
|
+
exports.RightsizingRecommendationConfiguration$ = RightsizingRecommendationConfiguration$;
|
|
3688
|
+
exports.RightsizingRecommendationMetadata$ = RightsizingRecommendationMetadata$;
|
|
3689
|
+
exports.RightsizingRecommendationSummary$ = RightsizingRecommendationSummary$;
|
|
1098
3690
|
exports.RightsizingType = RightsizingType;
|
|
3691
|
+
exports.RootCause$ = RootCause$;
|
|
3692
|
+
exports.RootCauseImpact$ = RootCauseImpact$;
|
|
3693
|
+
exports.SavingsPlans$ = SavingsPlans$;
|
|
3694
|
+
exports.SavingsPlansAmortizedCommitment$ = SavingsPlansAmortizedCommitment$;
|
|
3695
|
+
exports.SavingsPlansCoverage$ = SavingsPlansCoverage$;
|
|
3696
|
+
exports.SavingsPlansCoverageData$ = SavingsPlansCoverageData$;
|
|
1099
3697
|
exports.SavingsPlansDataType = SavingsPlansDataType;
|
|
3698
|
+
exports.SavingsPlansDetails$ = SavingsPlansDetails$;
|
|
3699
|
+
exports.SavingsPlansPurchaseAnalysisConfiguration$ = SavingsPlansPurchaseAnalysisConfiguration$;
|
|
3700
|
+
exports.SavingsPlansPurchaseAnalysisDetails$ = SavingsPlansPurchaseAnalysisDetails$;
|
|
3701
|
+
exports.SavingsPlansPurchaseRecommendation$ = SavingsPlansPurchaseRecommendation$;
|
|
3702
|
+
exports.SavingsPlansPurchaseRecommendationDetail$ = SavingsPlansPurchaseRecommendationDetail$;
|
|
3703
|
+
exports.SavingsPlansPurchaseRecommendationMetadata$ = SavingsPlansPurchaseRecommendationMetadata$;
|
|
3704
|
+
exports.SavingsPlansPurchaseRecommendationSummary$ = SavingsPlansPurchaseRecommendationSummary$;
|
|
3705
|
+
exports.SavingsPlansSavings$ = SavingsPlansSavings$;
|
|
3706
|
+
exports.SavingsPlansUtilization$ = SavingsPlansUtilization$;
|
|
3707
|
+
exports.SavingsPlansUtilizationAggregates$ = SavingsPlansUtilizationAggregates$;
|
|
3708
|
+
exports.SavingsPlansUtilizationByTime$ = SavingsPlansUtilizationByTime$;
|
|
3709
|
+
exports.SavingsPlansUtilizationDetail$ = SavingsPlansUtilizationDetail$;
|
|
3710
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3711
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3712
|
+
exports.ServiceSpecification$ = ServiceSpecification$;
|
|
3713
|
+
exports.SortDefinition$ = SortDefinition$;
|
|
1100
3714
|
exports.SortOrder = SortOrder;
|
|
3715
|
+
exports.StartCommitmentPurchaseAnalysis$ = StartCommitmentPurchaseAnalysis$;
|
|
1101
3716
|
exports.StartCommitmentPurchaseAnalysisCommand = StartCommitmentPurchaseAnalysisCommand;
|
|
3717
|
+
exports.StartCommitmentPurchaseAnalysisRequest$ = StartCommitmentPurchaseAnalysisRequest$;
|
|
3718
|
+
exports.StartCommitmentPurchaseAnalysisResponse$ = StartCommitmentPurchaseAnalysisResponse$;
|
|
3719
|
+
exports.StartCostAllocationTagBackfill$ = StartCostAllocationTagBackfill$;
|
|
1102
3720
|
exports.StartCostAllocationTagBackfillCommand = StartCostAllocationTagBackfillCommand;
|
|
3721
|
+
exports.StartCostAllocationTagBackfillRequest$ = StartCostAllocationTagBackfillRequest$;
|
|
3722
|
+
exports.StartCostAllocationTagBackfillResponse$ = StartCostAllocationTagBackfillResponse$;
|
|
3723
|
+
exports.StartSavingsPlansPurchaseRecommendationGeneration$ = StartSavingsPlansPurchaseRecommendationGeneration$;
|
|
1103
3724
|
exports.StartSavingsPlansPurchaseRecommendationGenerationCommand = StartSavingsPlansPurchaseRecommendationGenerationCommand;
|
|
3725
|
+
exports.StartSavingsPlansPurchaseRecommendationGenerationRequest$ = StartSavingsPlansPurchaseRecommendationGenerationRequest$;
|
|
3726
|
+
exports.StartSavingsPlansPurchaseRecommendationGenerationResponse$ = StartSavingsPlansPurchaseRecommendationGenerationResponse$;
|
|
3727
|
+
exports.Subscriber$ = Subscriber$;
|
|
1104
3728
|
exports.SubscriberStatus = SubscriberStatus;
|
|
1105
3729
|
exports.SubscriberType = SubscriberType;
|
|
1106
3730
|
exports.SupportedSavingsPlansType = SupportedSavingsPlansType;
|
|
3731
|
+
exports.TagResource$ = TagResource$;
|
|
1107
3732
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3733
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3734
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3735
|
+
exports.TagValues$ = TagValues$;
|
|
3736
|
+
exports.TargetInstance$ = TargetInstance$;
|
|
1108
3737
|
exports.TermInYears = TermInYears;
|
|
3738
|
+
exports.TerminateRecommendationDetail$ = TerminateRecommendationDetail$;
|
|
3739
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
3740
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
3741
|
+
exports.TotalImpactFilter$ = TotalImpactFilter$;
|
|
3742
|
+
exports.UnknownMonitorException = UnknownMonitorException;
|
|
3743
|
+
exports.UnknownMonitorException$ = UnknownMonitorException$;
|
|
3744
|
+
exports.UnknownSubscriptionException = UnknownSubscriptionException;
|
|
3745
|
+
exports.UnknownSubscriptionException$ = UnknownSubscriptionException$;
|
|
3746
|
+
exports.UnresolvableUsageUnitException = UnresolvableUsageUnitException;
|
|
3747
|
+
exports.UnresolvableUsageUnitException$ = UnresolvableUsageUnitException$;
|
|
3748
|
+
exports.UntagResource$ = UntagResource$;
|
|
1109
3749
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3750
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3751
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3752
|
+
exports.UpdateAnomalyMonitor$ = UpdateAnomalyMonitor$;
|
|
1110
3753
|
exports.UpdateAnomalyMonitorCommand = UpdateAnomalyMonitorCommand;
|
|
3754
|
+
exports.UpdateAnomalyMonitorRequest$ = UpdateAnomalyMonitorRequest$;
|
|
3755
|
+
exports.UpdateAnomalyMonitorResponse$ = UpdateAnomalyMonitorResponse$;
|
|
3756
|
+
exports.UpdateAnomalySubscription$ = UpdateAnomalySubscription$;
|
|
1111
3757
|
exports.UpdateAnomalySubscriptionCommand = UpdateAnomalySubscriptionCommand;
|
|
3758
|
+
exports.UpdateAnomalySubscriptionRequest$ = UpdateAnomalySubscriptionRequest$;
|
|
3759
|
+
exports.UpdateAnomalySubscriptionResponse$ = UpdateAnomalySubscriptionResponse$;
|
|
3760
|
+
exports.UpdateCostAllocationTagsStatus$ = UpdateCostAllocationTagsStatus$;
|
|
1112
3761
|
exports.UpdateCostAllocationTagsStatusCommand = UpdateCostAllocationTagsStatusCommand;
|
|
3762
|
+
exports.UpdateCostAllocationTagsStatusError$ = UpdateCostAllocationTagsStatusError$;
|
|
3763
|
+
exports.UpdateCostAllocationTagsStatusRequest$ = UpdateCostAllocationTagsStatusRequest$;
|
|
3764
|
+
exports.UpdateCostAllocationTagsStatusResponse$ = UpdateCostAllocationTagsStatusResponse$;
|
|
3765
|
+
exports.UpdateCostCategoryDefinition$ = UpdateCostCategoryDefinition$;
|
|
1113
3766
|
exports.UpdateCostCategoryDefinitionCommand = UpdateCostCategoryDefinitionCommand;
|
|
3767
|
+
exports.UpdateCostCategoryDefinitionRequest$ = UpdateCostCategoryDefinitionRequest$;
|
|
3768
|
+
exports.UpdateCostCategoryDefinitionResponse$ = UpdateCostCategoryDefinitionResponse$;
|
|
3769
|
+
exports.UtilizationByTime$ = UtilizationByTime$;
|
|
3770
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1114
3771
|
exports.paginateGetAnomalies = paginateGetAnomalies;
|
|
1115
3772
|
exports.paginateGetAnomalyMonitors = paginateGetAnomalyMonitors;
|
|
1116
3773
|
exports.paginateGetAnomalySubscriptions = paginateGetAnomalySubscriptions;
|