@aws-sdk/client-cloudwatch 3.987.0 → 3.988.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 CHANGED
@@ -16,7 +16,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
16
16
  var runtimeConfig = require('./runtimeConfig');
17
17
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
18
18
  var protocolHttp = require('@smithy/protocol-http');
19
+ var schemas_0 = require('./schemas/schemas_0');
19
20
  var utilWaiter = require('@smithy/util-waiter');
21
+ var errors = require('./models/errors');
22
+ var CloudWatchServiceException = require('./models/CloudWatchServiceException');
20
23
 
21
24
  const resolveClientEndpointParameters = (options) => {
22
25
  return Object.assign(options, {
@@ -113,1387 +116,6 @@ class CloudWatchClient extends smithyClient.Client {
113
116
  }
114
117
  }
115
118
 
116
- class CloudWatchServiceException extends smithyClient.ServiceException {
117
- constructor(options) {
118
- super(options);
119
- Object.setPrototypeOf(this, CloudWatchServiceException.prototype);
120
- }
121
- }
122
-
123
- class ConcurrentModificationException extends CloudWatchServiceException {
124
- name = "ConcurrentModificationException";
125
- $fault = "client";
126
- Message;
127
- constructor(opts) {
128
- super({
129
- name: "ConcurrentModificationException",
130
- $fault: "client",
131
- ...opts,
132
- });
133
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
134
- this.Message = opts.Message;
135
- }
136
- }
137
- class ConflictException extends CloudWatchServiceException {
138
- name = "ConflictException";
139
- $fault = "client";
140
- Message;
141
- constructor(opts) {
142
- super({
143
- name: "ConflictException",
144
- $fault: "client",
145
- ...opts,
146
- });
147
- Object.setPrototypeOf(this, ConflictException.prototype);
148
- this.Message = opts.Message;
149
- }
150
- }
151
- class DashboardInvalidInputError extends CloudWatchServiceException {
152
- name = "DashboardInvalidInputError";
153
- $fault = "client";
154
- dashboardValidationMessages;
155
- constructor(opts) {
156
- super({
157
- name: "DashboardInvalidInputError",
158
- $fault: "client",
159
- ...opts,
160
- });
161
- Object.setPrototypeOf(this, DashboardInvalidInputError.prototype);
162
- this.dashboardValidationMessages = opts.dashboardValidationMessages;
163
- }
164
- }
165
- class DashboardNotFoundError extends CloudWatchServiceException {
166
- name = "DashboardNotFoundError";
167
- $fault = "client";
168
- constructor(opts) {
169
- super({
170
- name: "DashboardNotFoundError",
171
- $fault: "client",
172
- ...opts,
173
- });
174
- Object.setPrototypeOf(this, DashboardNotFoundError.prototype);
175
- }
176
- }
177
- class ResourceNotFound extends CloudWatchServiceException {
178
- name = "ResourceNotFound";
179
- $fault = "client";
180
- constructor(opts) {
181
- super({
182
- name: "ResourceNotFound",
183
- $fault: "client",
184
- ...opts,
185
- });
186
- Object.setPrototypeOf(this, ResourceNotFound.prototype);
187
- }
188
- }
189
- class InternalServiceFault extends CloudWatchServiceException {
190
- name = "InternalServiceFault";
191
- $fault = "server";
192
- Message;
193
- constructor(opts) {
194
- super({
195
- name: "InternalServiceFault",
196
- $fault: "server",
197
- ...opts,
198
- });
199
- Object.setPrototypeOf(this, InternalServiceFault.prototype);
200
- this.Message = opts.Message;
201
- }
202
- }
203
- class InvalidParameterCombinationException extends CloudWatchServiceException {
204
- name = "InvalidParameterCombinationException";
205
- $fault = "client";
206
- constructor(opts) {
207
- super({
208
- name: "InvalidParameterCombinationException",
209
- $fault: "client",
210
- ...opts,
211
- });
212
- Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
213
- }
214
- }
215
- class InvalidParameterValueException extends CloudWatchServiceException {
216
- name = "InvalidParameterValueException";
217
- $fault = "client";
218
- constructor(opts) {
219
- super({
220
- name: "InvalidParameterValueException",
221
- $fault: "client",
222
- ...opts,
223
- });
224
- Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
225
- }
226
- }
227
- class MissingRequiredParameterException extends CloudWatchServiceException {
228
- name = "MissingRequiredParameterException";
229
- $fault = "client";
230
- constructor(opts) {
231
- super({
232
- name: "MissingRequiredParameterException",
233
- $fault: "client",
234
- ...opts,
235
- });
236
- Object.setPrototypeOf(this, MissingRequiredParameterException.prototype);
237
- }
238
- }
239
- class ResourceNotFoundException extends CloudWatchServiceException {
240
- name = "ResourceNotFoundException";
241
- $fault = "client";
242
- ResourceType;
243
- ResourceId;
244
- Message;
245
- constructor(opts) {
246
- super({
247
- name: "ResourceNotFoundException",
248
- $fault: "client",
249
- ...opts,
250
- });
251
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
252
- this.ResourceType = opts.ResourceType;
253
- this.ResourceId = opts.ResourceId;
254
- this.Message = opts.Message;
255
- }
256
- }
257
- class InvalidNextToken extends CloudWatchServiceException {
258
- name = "InvalidNextToken";
259
- $fault = "client";
260
- constructor(opts) {
261
- super({
262
- name: "InvalidNextToken",
263
- $fault: "client",
264
- ...opts,
265
- });
266
- Object.setPrototypeOf(this, InvalidNextToken.prototype);
267
- }
268
- }
269
- class LimitExceededException extends CloudWatchServiceException {
270
- name = "LimitExceededException";
271
- $fault = "client";
272
- Message;
273
- constructor(opts) {
274
- super({
275
- name: "LimitExceededException",
276
- $fault: "client",
277
- ...opts,
278
- });
279
- Object.setPrototypeOf(this, LimitExceededException.prototype);
280
- this.Message = opts.Message;
281
- }
282
- }
283
- class LimitExceededFault extends CloudWatchServiceException {
284
- name = "LimitExceededFault";
285
- $fault = "client";
286
- constructor(opts) {
287
- super({
288
- name: "LimitExceededFault",
289
- $fault: "client",
290
- ...opts,
291
- });
292
- Object.setPrototypeOf(this, LimitExceededFault.prototype);
293
- }
294
- }
295
- class InvalidFormatFault extends CloudWatchServiceException {
296
- name = "InvalidFormatFault";
297
- $fault = "client";
298
- constructor(opts) {
299
- super({
300
- name: "InvalidFormatFault",
301
- $fault: "client",
302
- ...opts,
303
- });
304
- Object.setPrototypeOf(this, InvalidFormatFault.prototype);
305
- }
306
- }
307
-
308
- const _A = "Average";
309
- const _AA = "AlarmActions";
310
- const _AAV = "ApproximateAggregateValue";
311
- const _AAl = "AlarmArn";
312
- const _AC = "AlarmContributor";
313
- const _ACA = "AlarmContributorAttributes";
314
- const _ACI = "AlarmContributorId";
315
- const _ACUT = "AlarmConfigurationUpdatedTimestamp";
316
- const _ACl = "AlarmContributors";
317
- const _AD = "AnomalyDetector";
318
- const _ADC = "AnomalyDetectorConfiguration";
319
- const _ADETR = "AnomalyDetectorExcludedTimeRanges";
320
- const _ADT = "AnomalyDetectorTypes";
321
- const _ADl = "AlarmDescription";
322
- const _ADn = "AnomalyDetectors";
323
- const _AE = "ActionsEnabled";
324
- const _AHI = "AlarmHistoryItem";
325
- const _AHIl = "AlarmHistoryItems";
326
- const _AI = "AccountId";
327
- const _AN = "AlarmName";
328
- const _ANP = "AlarmNamePrefix";
329
- const _ANl = "AlarmNames";
330
- const _AOTL = "ApplyOnTransformedLogs";
331
- const _AP = "ActionPrefix";
332
- const _AR = "AlarmRule";
333
- const _AS = "ActionsSuppressor";
334
- const _ASB = "ActionsSuppressedBy";
335
- const _ASEP = "ActionsSuppressorExtensionPeriod";
336
- const _ASR = "ActionsSuppressedReason";
337
- const _ASWP = "ActionsSuppressorWaitPeriod";
338
- const _ASd = "AdditionalStatistics";
339
- const _ASg = "AggregationStatistic";
340
- const _AT = "AlarmType";
341
- const _ATl = "AlarmTypes";
342
- const _AUC = "ApproximateUniqueCount";
343
- const _AV = "AggregateValue";
344
- const _AVp = "ApproximateValue";
345
- const _Ar = "Arn";
346
- const _At = "Attributes";
347
- const _BF = "BatchFailures";
348
- const _C = "Configuration";
349
- const _CA = "ContributorAttributes";
350
- const _CAo = "CompositeAlarm";
351
- const _CAom = "CompositeAlarms";
352
- const _CD = "CreationDate";
353
- const _CE = "ConflictException";
354
- const _CI = "ContributorId";
355
- const _CME = "ConcurrentModificationException";
356
- const _CO = "ComparisonOperator";
357
- const _COAN = "ChildrenOfAlarmName";
358
- const _Co = "Contributors";
359
- const _Cod = "Code";
360
- const _Cou = "Counts";
361
- const _D = "Dimensions";
362
- const _DA = "DashboardArn";
363
- const _DAA = "DisableAlarmActions";
364
- const _DAAI = "DisableAlarmActionsInput";
365
- const _DAC = "DescribeAlarmContributors";
366
- const _DACI = "DescribeAlarmContributorsInput";
367
- const _DACO = "DescribeAlarmContributorsOutput";
368
- const _DAD = "DeleteAnomalyDetector";
369
- const _DADI = "DeleteAnomalyDetectorInput";
370
- const _DADIe = "DescribeAnomalyDetectorsInput";
371
- const _DADO = "DeleteAnomalyDetectorOutput";
372
- const _DADOe = "DescribeAnomalyDetectorsOutput";
373
- const _DADe = "DescribeAnomalyDetectors";
374
- const _DAFM = "DescribeAlarmsForMetric";
375
- const _DAFMI = "DescribeAlarmsForMetricInput";
376
- const _DAFMO = "DescribeAlarmsForMetricOutput";
377
- const _DAH = "DescribeAlarmHistory";
378
- const _DAHI = "DescribeAlarmHistoryInput";
379
- const _DAHO = "DescribeAlarmHistoryOutput";
380
- const _DAI = "DeleteAlarmsInput";
381
- const _DAIe = "DescribeAlarmsInput";
382
- const _DAO = "DescribeAlarmsOutput";
383
- const _DAe = "DeleteAlarms";
384
- const _DAes = "DescribeAlarms";
385
- const _DB = "DashboardBody";
386
- const _DD = "DeleteDashboards";
387
- const _DDI = "DeleteDashboardsInput";
388
- const _DDO = "DeleteDashboardsOutput";
389
- const _DE = "DashboardEntry";
390
- const _DEa = "DashboardEntries";
391
- const _DF = "DimensionFilter";
392
- const _DFi = "DimensionFilters";
393
- const _DIIE = "DashboardInvalidInputError";
394
- const _DIR = "DeleteInsightRules";
395
- const _DIRI = "DeleteInsightRulesInput";
396
- const _DIRIe = "DescribeInsightRulesInput";
397
- const _DIRIi = "DisableInsightRulesInput";
398
- const _DIRO = "DeleteInsightRulesOutput";
399
- const _DIROe = "DescribeInsightRulesOutput";
400
- const _DIROi = "DisableInsightRulesOutput";
401
- const _DIRe = "DescribeInsightRules";
402
- const _DIRi = "DisableInsightRules";
403
- const _DMS = "DeleteMetricStream";
404
- const _DMSI = "DeleteMetricStreamInput";
405
- const _DMSO = "DeleteMetricStreamOutput";
406
- const _DN = "DashboardName";
407
- const _DNFE = "DashboardNotFoundError";
408
- const _DNP = "DashboardNamePrefix";
409
- const _DNa = "DashboardNames";
410
- const _DP = "DataPath";
411
- const _DTA = "DatapointsToAlarm";
412
- const _DVM = "DashboardValidationMessage";
413
- const _DVMa = "DashboardValidationMessages";
414
- const _Da = "Datapoint";
415
- const _Dat = "Datapoints";
416
- const _De = "Definition";
417
- const _Di = "Dimension";
418
- const _E = "Entity";
419
- const _EAA = "EnableAlarmActions";
420
- const _EAAI = "EnableAlarmActionsInput";
421
- const _ED = "EndDate";
422
- const _EF = "ExcludeFilters";
423
- const _EIR = "EnableInsightRules";
424
- const _EIRI = "EnableInsightRulesInput";
425
- const _EIRO = "EnableInsightRulesOutput";
426
- const _ELSCP = "EvaluateLowSampleCountPercentile";
427
- const _EMD = "EntityMetricData";
428
- const _EMDL = "EntityMetricDataList";
429
- const _EP = "EvaluationPeriods";
430
- const _ES = "ExtendedStatistics";
431
- const _ESv = "EvaluationState";
432
- const _ESx = "ExtendedStatistic";
433
- const _ET = "EndTime";
434
- const _ETR = "ExcludedTimeRanges";
435
- const _ETx = "ExceptionType";
436
- const _En = "Entries";
437
- const _Ex = "Expression";
438
- const _F = "Failures";
439
- const _FA = "FirehoseArn";
440
- const _FC = "FailureCode";
441
- const _FD = "FailureDescription";
442
- const _FR = "FailureResource";
443
- const _GD = "GetDashboard";
444
- const _GDI = "GetDashboardInput";
445
- const _GDO = "GetDashboardOutput";
446
- const _GIRR = "GetInsightRuleReport";
447
- const _GIRRI = "GetInsightRuleReportInput";
448
- const _GIRRO = "GetInsightRuleReportOutput";
449
- const _GMD = "GetMetricData";
450
- const _GMDI = "GetMetricDataInput";
451
- const _GMDO = "GetMetricDataOutput";
452
- const _GMS = "GetMetricStatistics";
453
- const _GMSI = "GetMetricStatisticsInput";
454
- const _GMSIe = "GetMetricStreamInput";
455
- const _GMSO = "GetMetricStatisticsOutput";
456
- const _GMSOe = "GetMetricStreamOutput";
457
- const _GMSe = "GetMetricStream";
458
- const _GMWI = "GetMetricWidgetImage";
459
- const _GMWII = "GetMetricWidgetImageInput";
460
- const _GMWIO = "GetMetricWidgetImageOutput";
461
- const _HD = "HistoryData";
462
- const _HIT = "HistoryItemType";
463
- const _HS = "HistorySummary";
464
- const _I = "Id";
465
- const _IDA = "InsufficientDataActions";
466
- const _IF = "IncludeFilters";
467
- const _IFF = "InvalidFormatFault";
468
- const _ILA = "IncludeLinkedAccounts";
469
- const _ILAM = "IncludeLinkedAccountsMetrics";
470
- const _IM = "IncludeMetrics";
471
- const _INT = "InvalidNextToken";
472
- const _IPCE = "InvalidParameterCombinationException";
473
- const _IPVE = "InvalidParameterValueException";
474
- const _IR = "InsightRules";
475
- const _IRC = "InsightRuleContributor";
476
- const _IRCD = "InsightRuleContributorDatapoint";
477
- const _IRCDn = "InsightRuleContributorDatapoints";
478
- const _IRCn = "InsightRuleContributors";
479
- const _IRMD = "InsightRuleMetricDatapoint";
480
- const _IRMDn = "InsightRuleMetricDatapoints";
481
- const _IRn = "InsightRule";
482
- const _ISF = "InternalServiceFault";
483
- const _K = "Keys";
484
- const _KA = "KeyAttributes";
485
- const _KL = "KeyLabels";
486
- const _Ke = "Key";
487
- const _L = "Label";
488
- const _LD = "ListDashboards";
489
- const _LDI = "ListDashboardsInput";
490
- const _LDO = "ListDashboardsOutput";
491
- const _LEE = "LimitExceededException";
492
- const _LEF = "LimitExceededFault";
493
- const _LM = "LastModified";
494
- const _LMI = "ListMetricsInput";
495
- const _LMIR = "ListManagedInsightRules";
496
- const _LMIRI = "ListManagedInsightRulesInput";
497
- const _LMIRO = "ListManagedInsightRulesOutput";
498
- const _LMO = "ListMetricsOutput";
499
- const _LMS = "ListMetricStreams";
500
- const _LMSI = "ListMetricStreamsInput";
501
- const _LMSO = "ListMetricStreamsOutput";
502
- const _LMi = "ListMetrics";
503
- const _LO = "LabelOptions";
504
- const _LTFR = "ListTagsForResource";
505
- const _LTFRI = "ListTagsForResourceInput";
506
- const _LTFRO = "ListTagsForResourceOutput";
507
- const _LUD = "LastUpdateDate";
508
- const _M = "Message";
509
- const _MA = "MetricAlarms";
510
- const _MAe = "MetricAlarm";
511
- const _MC = "MetricCharacteristics";
512
- const _MCC = "MaxContributorCount";
513
- const _MCV = "MaxContributorValue";
514
- const _MD = "MetricData";
515
- const _MDQ = "MetricDataQueries";
516
- const _MDQe = "MetricDataQuery";
517
- const _MDR = "MetricDataResults";
518
- const _MDRM = "MetricDataResultMessages";
519
- const _MDRe = "MetricDataResult";
520
- const _MDa = "MaxDatapoints";
521
- const _MDe = "MetricDatapoints";
522
- const _MDes = "MessageData";
523
- const _MDet = "MetricDatum";
524
- const _MMAD = "MetricMathAnomalyDetector";
525
- const _MN = "MetricName";
526
- const _MNe = "MetricNames";
527
- const _MR = "MaxRecords";
528
- const _MRD = "ManagedRuleDescription";
529
- const _MRDa = "ManagedRuleDescriptions";
530
- const _MRPE = "MissingRequiredParameterException";
531
- const _MRS = "ManagedRuleState";
532
- const _MRa = "MaxResults";
533
- const _MRan = "ManagedRule";
534
- const _MRana = "ManagedRules";
535
- const _MS = "MetricStat";
536
- const _MSE = "MetricStreamEntry";
537
- const _MSEe = "MetricStreamEntries";
538
- const _MSF = "MetricStreamFilter";
539
- const _MSFe = "MetricStreamFilters";
540
- const _MSSC = "MetricStreamStatisticsConfiguration";
541
- const _MSSCe = "MetricStreamStatisticsConfigurations";
542
- const _MSSIM = "MetricStreamStatisticsIncludeMetrics";
543
- const _MSSM = "MetricStreamStatisticsMetric";
544
- const _MT = "MetricTimezone";
545
- const _MW = "MetricWidget";
546
- const _MWI = "MetricWidgetImage";
547
- const _Ma = "Maximum";
548
- const _Me = "Metrics";
549
- const _Mes = "Messages";
550
- const _Met = "Metric";
551
- const _Mi = "Minimum";
552
- const _N = "Namespace";
553
- const _NT = "NextToken";
554
- const _Na = "Name";
555
- const _Nam = "Names";
556
- const _OA = "OwningAccount";
557
- const _OAw = "OwningAccounts";
558
- const _OB = "OrderBy";
559
- const _OF = "OutputFormat";
560
- const _OKA = "OKActions";
561
- const _P = "Period";
562
- const _PAD = "PutAnomalyDetector";
563
- const _PADI = "PutAnomalyDetectorInput";
564
- const _PADO = "PutAnomalyDetectorOutput";
565
- const _PCA = "PutCompositeAlarm";
566
- const _PCAI = "PutCompositeAlarmInput";
567
- const _PD = "PutDashboard";
568
- const _PDI = "PutDashboardInput";
569
- const _PDO = "PutDashboardOutput";
570
- const _PF = "PartialFailure";
571
- const _PIR = "PutInsightRule";
572
- const _PIRI = "PutInsightRuleInput";
573
- const _PIRO = "PutInsightRuleOutput";
574
- const _PMA = "PutMetricAlarm";
575
- const _PMAI = "PutMetricAlarmInput";
576
- const _PMD = "PutMetricData";
577
- const _PMDI = "PutMetricDataInput";
578
- const _PMIR = "PutManagedInsightRules";
579
- const _PMIRI = "PutManagedInsightRulesInput";
580
- const _PMIRO = "PutManagedInsightRulesOutput";
581
- const _PMS = "PutMetricStream";
582
- const _PMSI = "PutMetricStreamInput";
583
- const _PMSO = "PutMetricStreamOutput";
584
- const _POAN = "ParentsOfAlarmName";
585
- const _PS = "PeriodicSpikes";
586
- const _R = "Range";
587
- const _RA = "RoleArn";
588
- const _RARN = "ResourceARN";
589
- const _RAe = "RecentlyActive";
590
- const _RD = "ReturnData";
591
- const _RDu = "RuleDefinition";
592
- const _RI = "ResourceId";
593
- const _RN = "RuleNames";
594
- const _RNF = "ResourceNotFound";
595
- const _RNFE = "ResourceNotFoundException";
596
- const _RNu = "RuleName";
597
- const _RS = "RuleState";
598
- const _RT = "ResourceType";
599
- const _S = "Stat";
600
- const _SAS = "SetAlarmState";
601
- const _SASI = "SetAlarmStateInput";
602
- const _SB = "ScanBy";
603
- const _SC = "SampleCount";
604
- const _SCt = "StatisticsConfigurations";
605
- const _SCta = "StatusCode";
606
- const _SD = "StartDate";
607
- const _SEV = "StrictEntityValidation";
608
- const _SMAD = "SingleMetricAnomalyDetector";
609
- const _SMS = "StartMetricStreams";
610
- const _SMSI = "StartMetricStreamsInput";
611
- const _SMSIt = "StopMetricStreamsInput";
612
- const _SMSO = "StartMetricStreamsOutput";
613
- const _SMSOt = "StopMetricStreamsOutput";
614
- const _SMSt = "StopMetricStreams";
615
- const _SR = "StateReason";
616
- const _SRD = "StateReasonData";
617
- const _SRt = "StorageResolution";
618
- const _SS = "StatisticSet";
619
- const _ST = "StartTime";
620
- const _STT = "StateTransitionedTimestamp";
621
- const _SUT = "StateUpdatedTimestamp";
622
- const _SV = "StateValue";
623
- const _SVt = "StatisticValues";
624
- const _Sc = "Schema";
625
- const _Si = "Size";
626
- const _St = "Statistic";
627
- const _Sta = "Statistics";
628
- const _Stat = "State";
629
- const _Su = "Sum";
630
- const _T = "Timestamp";
631
- const _TK = "TagKeys";
632
- const _TL = "TagList";
633
- const _TMD = "TreatMissingData";
634
- const _TMI = "ThresholdMetricId";
635
- const _TN = "TemplateName";
636
- const _TR = "TagResource";
637
- const _TRI = "TagResourceInput";
638
- const _TRO = "TagResourceOutput";
639
- const _Ta = "Tags";
640
- const _Tag = "Tag";
641
- const _Th = "Threshold";
642
- const _Ti = "Timezone";
643
- const _Tim = "Timestamps";
644
- const _U = "Unit";
645
- const _UC = "UniqueContributors";
646
- const _UR = "UntagResource";
647
- const _URI = "UntagResourceInput";
648
- const _URO = "UntagResourceOutput";
649
- const _V = "Value";
650
- const _Va = "Values";
651
- const _aQE = "awsQueryError";
652
- const _c = "client";
653
- const _dVM = "dashboardValidationMessages";
654
- const _e = "error";
655
- const _hE = "httpError";
656
- const _m = "message";
657
- const _s = "server";
658
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatch";
659
- const n0 = "com.amazonaws.cloudwatch";
660
- var AlarmContributor$ = [3, n0, _AC,
661
- 0,
662
- [_CI, _CA, _SR, _STT],
663
- [0, 128 | 0, 0, 4], 3
664
- ];
665
- var AlarmHistoryItem$ = [3, n0, _AHI,
666
- 0,
667
- [_AN, _ACI, _AT, _T, _HIT, _HS, _HD, _ACA],
668
- [0, 0, 0, 4, 0, 0, 0, 128 | 0]
669
- ];
670
- var AnomalyDetector$ = [3, n0, _AD,
671
- 0,
672
- [_N, _MN, _D, _S, _C, _SV, _MC, _SMAD, _MMAD],
673
- [0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, 0, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
674
- ];
675
- var AnomalyDetectorConfiguration$ = [3, n0, _ADC,
676
- 0,
677
- [_ETR, _MT],
678
- [() => AnomalyDetectorExcludedTimeRanges, 0]
679
- ];
680
- var CompositeAlarm$ = [3, n0, _CAo,
681
- 0,
682
- [_AE, _AA, _AAl, _ACUT, _ADl, _AN, _AR, _IDA, _OKA, _SR, _SRD, _SUT, _SV, _STT, _ASB, _ASR, _AS, _ASWP, _ASEP],
683
- [2, 64 | 0, 0, 4, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 4, 0, 4, 0, 0, 0, 1, 1]
684
- ];
685
- var ConcurrentModificationException$ = [-3, n0, _CME,
686
- { [_aQE]: [`ConcurrentModificationException`, 429], [_e]: _c, [_hE]: 429 },
687
- [_M],
688
- [0]
689
- ];
690
- schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
691
- var ConflictException$ = [-3, n0, _CE,
692
- { [_e]: _c, [_hE]: 409 },
693
- [_M],
694
- [0]
695
- ];
696
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
697
- var DashboardEntry$ = [3, n0, _DE,
698
- 0,
699
- [_DN, _DA, _LM, _Si],
700
- [0, 0, 4, 1]
701
- ];
702
- var DashboardInvalidInputError$ = [-3, n0, _DIIE,
703
- { [_aQE]: [`InvalidParameterInput`, 400], [_e]: _c, [_hE]: 400 },
704
- [_m, _dVM],
705
- [0, () => DashboardValidationMessages]
706
- ];
707
- schema.TypeRegistry.for(n0).registerError(DashboardInvalidInputError$, DashboardInvalidInputError);
708
- var DashboardNotFoundError$ = [-3, n0, _DNFE,
709
- { [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
710
- [_m],
711
- [0]
712
- ];
713
- schema.TypeRegistry.for(n0).registerError(DashboardNotFoundError$, DashboardNotFoundError);
714
- var DashboardValidationMessage$ = [3, n0, _DVM,
715
- 0,
716
- [_DP, _M],
717
- [0, 0]
718
- ];
719
- var Datapoint$ = [3, n0, _Da,
720
- 0,
721
- [_T, _SC, _A, _Su, _Mi, _Ma, _U, _ES],
722
- [4, 1, 1, 1, 1, 1, 0, 128 | 1]
723
- ];
724
- var DeleteAlarmsInput$ = [3, n0, _DAI,
725
- 0,
726
- [_ANl],
727
- [64 | 0], 1
728
- ];
729
- var DeleteAnomalyDetectorInput$ = [3, n0, _DADI,
730
- 0,
731
- [_N, _MN, _D, _S, _SMAD, _MMAD],
732
- [0, 0, () => Dimensions, 0, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
733
- ];
734
- var DeleteAnomalyDetectorOutput$ = [3, n0, _DADO,
735
- 0,
736
- [],
737
- []
738
- ];
739
- var DeleteDashboardsInput$ = [3, n0, _DDI,
740
- 0,
741
- [_DNa],
742
- [64 | 0], 1
743
- ];
744
- var DeleteDashboardsOutput$ = [3, n0, _DDO,
745
- 0,
746
- [],
747
- []
748
- ];
749
- var DeleteInsightRulesInput$ = [3, n0, _DIRI,
750
- 0,
751
- [_RN],
752
- [64 | 0], 1
753
- ];
754
- var DeleteInsightRulesOutput$ = [3, n0, _DIRO,
755
- 0,
756
- [_F],
757
- [() => BatchFailures]
758
- ];
759
- var DeleteMetricStreamInput$ = [3, n0, _DMSI,
760
- 0,
761
- [_Na],
762
- [0], 1
763
- ];
764
- var DeleteMetricStreamOutput$ = [3, n0, _DMSO,
765
- 0,
766
- [],
767
- []
768
- ];
769
- var DescribeAlarmContributorsInput$ = [3, n0, _DACI,
770
- 0,
771
- [_AN, _NT],
772
- [0, 0], 1
773
- ];
774
- var DescribeAlarmContributorsOutput$ = [3, n0, _DACO,
775
- 0,
776
- [_ACl, _NT],
777
- [() => AlarmContributors, 0], 1
778
- ];
779
- var DescribeAlarmHistoryInput$ = [3, n0, _DAHI,
780
- 0,
781
- [_AN, _ACI, _ATl, _HIT, _SD, _ED, _MR, _NT, _SB],
782
- [0, 0, 64 | 0, 0, 4, 4, 1, 0, 0]
783
- ];
784
- var DescribeAlarmHistoryOutput$ = [3, n0, _DAHO,
785
- 0,
786
- [_AHIl, _NT],
787
- [() => AlarmHistoryItems, 0]
788
- ];
789
- var DescribeAlarmsForMetricInput$ = [3, n0, _DAFMI,
790
- 0,
791
- [_MN, _N, _St, _ESx, _D, _P, _U],
792
- [0, 0, 0, 0, () => Dimensions, 1, 0], 2
793
- ];
794
- var DescribeAlarmsForMetricOutput$ = [3, n0, _DAFMO,
795
- 0,
796
- [_MA],
797
- [() => MetricAlarms]
798
- ];
799
- var DescribeAlarmsInput$ = [3, n0, _DAIe,
800
- 0,
801
- [_ANl, _ANP, _ATl, _COAN, _POAN, _SV, _AP, _MR, _NT],
802
- [64 | 0, 0, 64 | 0, 0, 0, 0, 0, 1, 0]
803
- ];
804
- var DescribeAlarmsOutput$ = [3, n0, _DAO,
805
- 0,
806
- [_CAom, _MA, _NT],
807
- [() => CompositeAlarms, () => MetricAlarms, 0]
808
- ];
809
- var DescribeAnomalyDetectorsInput$ = [3, n0, _DADIe,
810
- 0,
811
- [_NT, _MRa, _N, _MN, _D, _ADT],
812
- [0, 1, 0, 0, () => Dimensions, 64 | 0]
813
- ];
814
- var DescribeAnomalyDetectorsOutput$ = [3, n0, _DADOe,
815
- 0,
816
- [_ADn, _NT],
817
- [() => AnomalyDetectors, 0]
818
- ];
819
- var DescribeInsightRulesInput$ = [3, n0, _DIRIe,
820
- 0,
821
- [_NT, _MRa],
822
- [0, 1]
823
- ];
824
- var DescribeInsightRulesOutput$ = [3, n0, _DIROe,
825
- 0,
826
- [_NT, _IR],
827
- [0, () => InsightRules]
828
- ];
829
- var Dimension$ = [3, n0, _Di,
830
- 0,
831
- [_Na, _V],
832
- [0, 0], 2
833
- ];
834
- var DimensionFilter$ = [3, n0, _DF,
835
- 0,
836
- [_Na, _V],
837
- [0, 0], 1
838
- ];
839
- var DisableAlarmActionsInput$ = [3, n0, _DAAI,
840
- 0,
841
- [_ANl],
842
- [64 | 0], 1
843
- ];
844
- var DisableInsightRulesInput$ = [3, n0, _DIRIi,
845
- 0,
846
- [_RN],
847
- [64 | 0], 1
848
- ];
849
- var DisableInsightRulesOutput$ = [3, n0, _DIROi,
850
- 0,
851
- [_F],
852
- [() => BatchFailures]
853
- ];
854
- var EnableAlarmActionsInput$ = [3, n0, _EAAI,
855
- 0,
856
- [_ANl],
857
- [64 | 0], 1
858
- ];
859
- var EnableInsightRulesInput$ = [3, n0, _EIRI,
860
- 0,
861
- [_RN],
862
- [64 | 0], 1
863
- ];
864
- var EnableInsightRulesOutput$ = [3, n0, _EIRO,
865
- 0,
866
- [_F],
867
- [() => BatchFailures]
868
- ];
869
- var Entity$ = [3, n0, _E,
870
- 0,
871
- [_KA, _At],
872
- [128 | 0, 128 | 0]
873
- ];
874
- var EntityMetricData$ = [3, n0, _EMD,
875
- 0,
876
- [_E, _MD],
877
- [() => Entity$, () => MetricData]
878
- ];
879
- var GetDashboardInput$ = [3, n0, _GDI,
880
- 0,
881
- [_DN],
882
- [0], 1
883
- ];
884
- var GetDashboardOutput$ = [3, n0, _GDO,
885
- 0,
886
- [_DA, _DB, _DN],
887
- [0, 0, 0]
888
- ];
889
- var GetInsightRuleReportInput$ = [3, n0, _GIRRI,
890
- 0,
891
- [_RNu, _ST, _ET, _P, _MCC, _Me, _OB],
892
- [0, 4, 4, 1, 1, 64 | 0, 0], 4
893
- ];
894
- var GetInsightRuleReportOutput$ = [3, n0, _GIRRO,
895
- 0,
896
- [_KL, _ASg, _AV, _AUC, _Co, _MDe],
897
- [64 | 0, 0, 1, 1, () => InsightRuleContributors, () => InsightRuleMetricDatapoints]
898
- ];
899
- var GetMetricDataInput$ = [3, n0, _GMDI,
900
- 0,
901
- [_MDQ, _ST, _ET, _NT, _SB, _MDa, _LO],
902
- [() => MetricDataQueries, 4, 4, 0, 0, 1, () => LabelOptions$], 3
903
- ];
904
- var GetMetricDataOutput$ = [3, n0, _GMDO,
905
- 0,
906
- [_MDR, _NT, _Mes],
907
- [() => MetricDataResults, 0, () => MetricDataResultMessages]
908
- ];
909
- var GetMetricStatisticsInput$ = [3, n0, _GMSI,
910
- 0,
911
- [_N, _MN, _ST, _ET, _P, _D, _Sta, _ES, _U],
912
- [0, 0, 4, 4, 1, () => Dimensions, 64 | 0, 64 | 0, 0], 5
913
- ];
914
- var GetMetricStatisticsOutput$ = [3, n0, _GMSO,
915
- 0,
916
- [_L, _Dat],
917
- [0, () => Datapoints]
918
- ];
919
- var GetMetricStreamInput$ = [3, n0, _GMSIe,
920
- 0,
921
- [_Na],
922
- [0], 1
923
- ];
924
- var GetMetricStreamOutput$ = [3, n0, _GMSOe,
925
- 0,
926
- [_Ar, _Na, _IF, _EF, _FA, _RA, _Stat, _CD, _LUD, _OF, _SCt, _ILAM],
927
- [0, 0, () => MetricStreamFilters, () => MetricStreamFilters, 0, 0, 0, 4, 4, 0, () => MetricStreamStatisticsConfigurations, 2]
928
- ];
929
- var GetMetricWidgetImageInput$ = [3, n0, _GMWII,
930
- 0,
931
- [_MW, _OF],
932
- [0, 0], 1
933
- ];
934
- var GetMetricWidgetImageOutput$ = [3, n0, _GMWIO,
935
- 0,
936
- [_MWI],
937
- [21]
938
- ];
939
- var InsightRule$ = [3, n0, _IRn,
940
- 0,
941
- [_Na, _Stat, _Sc, _De, _MRan, _AOTL],
942
- [0, 0, 0, 0, 2, 2], 4
943
- ];
944
- var InsightRuleContributor$ = [3, n0, _IRC,
945
- 0,
946
- [_K, _AAV, _Dat],
947
- [64 | 0, 1, () => InsightRuleContributorDatapoints], 3
948
- ];
949
- var InsightRuleContributorDatapoint$ = [3, n0, _IRCD,
950
- 0,
951
- [_T, _AVp],
952
- [4, 1], 2
953
- ];
954
- var InsightRuleMetricDatapoint$ = [3, n0, _IRMD,
955
- 0,
956
- [_T, _UC, _MCV, _SC, _A, _Su, _Mi, _Ma],
957
- [4, 1, 1, 1, 1, 1, 1, 1], 1
958
- ];
959
- var InternalServiceFault$ = [-3, n0, _ISF,
960
- { [_aQE]: [`InternalServiceError`, 500], [_e]: _s, [_hE]: 500 },
961
- [_M],
962
- [0]
963
- ];
964
- schema.TypeRegistry.for(n0).registerError(InternalServiceFault$, InternalServiceFault);
965
- var InvalidFormatFault$ = [-3, n0, _IFF,
966
- { [_aQE]: [`InvalidFormat`, 400], [_e]: _c, [_hE]: 400 },
967
- [_m],
968
- [0]
969
- ];
970
- schema.TypeRegistry.for(n0).registerError(InvalidFormatFault$, InvalidFormatFault);
971
- var InvalidNextToken$ = [-3, n0, _INT,
972
- { [_aQE]: [`InvalidNextToken`, 400], [_e]: _c, [_hE]: 400 },
973
- [_m],
974
- [0]
975
- ];
976
- schema.TypeRegistry.for(n0).registerError(InvalidNextToken$, InvalidNextToken);
977
- var InvalidParameterCombinationException$ = [-3, n0, _IPCE,
978
- { [_aQE]: [`InvalidParameterCombination`, 400], [_e]: _c, [_hE]: 400 },
979
- [_m],
980
- [0]
981
- ];
982
- schema.TypeRegistry.for(n0).registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
983
- var InvalidParameterValueException$ = [-3, n0, _IPVE,
984
- { [_aQE]: [`InvalidParameterValue`, 400], [_e]: _c, [_hE]: 400 },
985
- [_m],
986
- [0]
987
- ];
988
- schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
989
- var LabelOptions$ = [3, n0, _LO,
990
- 0,
991
- [_Ti],
992
- [0]
993
- ];
994
- var LimitExceededException$ = [-3, n0, _LEE,
995
- { [_aQE]: [`LimitExceededException`, 400], [_e]: _c, [_hE]: 400 },
996
- [_M],
997
- [0]
998
- ];
999
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1000
- var LimitExceededFault$ = [-3, n0, _LEF,
1001
- { [_aQE]: [`LimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
1002
- [_m],
1003
- [0]
1004
- ];
1005
- schema.TypeRegistry.for(n0).registerError(LimitExceededFault$, LimitExceededFault);
1006
- var ListDashboardsInput$ = [3, n0, _LDI,
1007
- 0,
1008
- [_DNP, _NT],
1009
- [0, 0]
1010
- ];
1011
- var ListDashboardsOutput$ = [3, n0, _LDO,
1012
- 0,
1013
- [_DEa, _NT],
1014
- [() => DashboardEntries, 0]
1015
- ];
1016
- var ListManagedInsightRulesInput$ = [3, n0, _LMIRI,
1017
- 0,
1018
- [_RARN, _NT, _MRa],
1019
- [0, 0, 1], 1
1020
- ];
1021
- var ListManagedInsightRulesOutput$ = [3, n0, _LMIRO,
1022
- 0,
1023
- [_MRana, _NT],
1024
- [() => ManagedRuleDescriptions, 0]
1025
- ];
1026
- var ListMetricsInput$ = [3, n0, _LMI,
1027
- 0,
1028
- [_N, _MN, _D, _NT, _RAe, _ILA, _OA],
1029
- [0, 0, () => DimensionFilters, 0, 0, 2, 0]
1030
- ];
1031
- var ListMetricsOutput$ = [3, n0, _LMO,
1032
- 0,
1033
- [_Me, _NT, _OAw],
1034
- [() => Metrics, 0, 64 | 0]
1035
- ];
1036
- var ListMetricStreamsInput$ = [3, n0, _LMSI,
1037
- 0,
1038
- [_NT, _MRa],
1039
- [0, 1]
1040
- ];
1041
- var ListMetricStreamsOutput$ = [3, n0, _LMSO,
1042
- 0,
1043
- [_NT, _En],
1044
- [0, () => MetricStreamEntries]
1045
- ];
1046
- var ListTagsForResourceInput$ = [3, n0, _LTFRI,
1047
- 0,
1048
- [_RARN],
1049
- [0], 1
1050
- ];
1051
- var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
1052
- 0,
1053
- [_Ta],
1054
- [() => TagList]
1055
- ];
1056
- var ManagedRule$ = [3, n0, _MRan,
1057
- 0,
1058
- [_TN, _RARN, _Ta],
1059
- [0, 0, () => TagList], 2
1060
- ];
1061
- var ManagedRuleDescription$ = [3, n0, _MRD,
1062
- 0,
1063
- [_TN, _RARN, _RS],
1064
- [0, 0, () => ManagedRuleState$]
1065
- ];
1066
- var ManagedRuleState$ = [3, n0, _MRS,
1067
- 0,
1068
- [_RNu, _Stat],
1069
- [0, 0], 2
1070
- ];
1071
- var MessageData$ = [3, n0, _MDes,
1072
- 0,
1073
- [_Cod, _V],
1074
- [0, 0]
1075
- ];
1076
- var Metric$ = [3, n0, _Met,
1077
- 0,
1078
- [_N, _MN, _D],
1079
- [0, 0, () => Dimensions]
1080
- ];
1081
- var MetricAlarm$ = [3, n0, _MAe,
1082
- 0,
1083
- [_AN, _AAl, _ADl, _ACUT, _AE, _OKA, _AA, _IDA, _SV, _SR, _SRD, _SUT, _MN, _N, _St, _ESx, _D, _P, _U, _EP, _DTA, _Th, _CO, _TMD, _ELSCP, _Me, _TMI, _ESv, _STT],
1084
- [0, 0, 0, 4, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 4, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 1, 0, 0, 0, () => MetricDataQueries, 0, 0, 4]
1085
- ];
1086
- var MetricCharacteristics$ = [3, n0, _MC,
1087
- 0,
1088
- [_PS],
1089
- [2]
1090
- ];
1091
- var MetricDataQuery$ = [3, n0, _MDQe,
1092
- 0,
1093
- [_I, _MS, _Ex, _L, _RD, _P, _AI],
1094
- [0, () => MetricStat$, 0, 0, 2, 1, 0], 1
1095
- ];
1096
- var MetricDataResult$ = [3, n0, _MDRe,
1097
- 0,
1098
- [_I, _L, _Tim, _Va, _SCta, _Mes],
1099
- [0, 0, 64 | 4, 64 | 1, 0, () => MetricDataResultMessages]
1100
- ];
1101
- var MetricDatum$ = [3, n0, _MDet,
1102
- 0,
1103
- [_MN, _D, _T, _V, _SVt, _Va, _Cou, _U, _SRt],
1104
- [0, () => Dimensions, 4, 1, () => StatisticSet$, 64 | 1, 64 | 1, 0, 1], 1
1105
- ];
1106
- var MetricMathAnomalyDetector$ = [3, n0, _MMAD,
1107
- 0,
1108
- [_MDQ],
1109
- [() => MetricDataQueries]
1110
- ];
1111
- var MetricStat$ = [3, n0, _MS,
1112
- 0,
1113
- [_Met, _P, _S, _U],
1114
- [() => Metric$, 1, 0, 0], 3
1115
- ];
1116
- var MetricStreamEntry$ = [3, n0, _MSE,
1117
- 0,
1118
- [_Ar, _CD, _LUD, _Na, _FA, _Stat, _OF],
1119
- [0, 4, 4, 0, 0, 0, 0]
1120
- ];
1121
- var MetricStreamFilter$ = [3, n0, _MSF,
1122
- 0,
1123
- [_N, _MNe],
1124
- [0, 64 | 0]
1125
- ];
1126
- var MetricStreamStatisticsConfiguration$ = [3, n0, _MSSC,
1127
- 0,
1128
- [_IM, _ASd],
1129
- [() => MetricStreamStatisticsIncludeMetrics, 64 | 0], 2
1130
- ];
1131
- var MetricStreamStatisticsMetric$ = [3, n0, _MSSM,
1132
- 0,
1133
- [_N, _MN],
1134
- [0, 0], 2
1135
- ];
1136
- var MissingRequiredParameterException$ = [-3, n0, _MRPE,
1137
- { [_aQE]: [`MissingParameter`, 400], [_e]: _c, [_hE]: 400 },
1138
- [_m],
1139
- [0]
1140
- ];
1141
- schema.TypeRegistry.for(n0).registerError(MissingRequiredParameterException$, MissingRequiredParameterException);
1142
- var PartialFailure$ = [3, n0, _PF,
1143
- 0,
1144
- [_FR, _ETx, _FC, _FD],
1145
- [0, 0, 0, 0]
1146
- ];
1147
- var PutAnomalyDetectorInput$ = [3, n0, _PADI,
1148
- 0,
1149
- [_N, _MN, _D, _S, _C, _MC, _SMAD, _MMAD],
1150
- [0, 0, () => Dimensions, 0, () => AnomalyDetectorConfiguration$, () => MetricCharacteristics$, () => SingleMetricAnomalyDetector$, () => MetricMathAnomalyDetector$]
1151
- ];
1152
- var PutAnomalyDetectorOutput$ = [3, n0, _PADO,
1153
- 0,
1154
- [],
1155
- []
1156
- ];
1157
- var PutCompositeAlarmInput$ = [3, n0, _PCAI,
1158
- 0,
1159
- [_AN, _AR, _AE, _AA, _ADl, _IDA, _OKA, _Ta, _AS, _ASWP, _ASEP],
1160
- [0, 0, 2, 64 | 0, 0, 64 | 0, 64 | 0, () => TagList, 0, 1, 1], 2
1161
- ];
1162
- var PutDashboardInput$ = [3, n0, _PDI,
1163
- 0,
1164
- [_DN, _DB],
1165
- [0, 0], 2
1166
- ];
1167
- var PutDashboardOutput$ = [3, n0, _PDO,
1168
- 0,
1169
- [_DVMa],
1170
- [() => DashboardValidationMessages]
1171
- ];
1172
- var PutInsightRuleInput$ = [3, n0, _PIRI,
1173
- 0,
1174
- [_RNu, _RDu, _RS, _Ta, _AOTL],
1175
- [0, 0, 0, () => TagList, 2], 2
1176
- ];
1177
- var PutInsightRuleOutput$ = [3, n0, _PIRO,
1178
- 0,
1179
- [],
1180
- []
1181
- ];
1182
- var PutManagedInsightRulesInput$ = [3, n0, _PMIRI,
1183
- 0,
1184
- [_MRana],
1185
- [() => ManagedRules], 1
1186
- ];
1187
- var PutManagedInsightRulesOutput$ = [3, n0, _PMIRO,
1188
- 0,
1189
- [_F],
1190
- [() => BatchFailures]
1191
- ];
1192
- var PutMetricAlarmInput$ = [3, n0, _PMAI,
1193
- 0,
1194
- [_AN, _EP, _CO, _ADl, _AE, _OKA, _AA, _IDA, _MN, _N, _St, _ESx, _D, _P, _U, _DTA, _Th, _TMD, _ELSCP, _Me, _Ta, _TMI],
1195
- [0, 1, 0, 0, 2, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, () => Dimensions, 1, 0, 1, 1, 0, 0, () => MetricDataQueries, () => TagList, 0], 3
1196
- ];
1197
- var PutMetricDataInput$ = [3, n0, _PMDI,
1198
- 0,
1199
- [_N, _MD, _EMD, _SEV],
1200
- [0, () => MetricData, () => EntityMetricDataList, 2], 1
1201
- ];
1202
- var PutMetricStreamInput$ = [3, n0, _PMSI,
1203
- 0,
1204
- [_Na, _FA, _RA, _OF, _IF, _EF, _Ta, _SCt, _ILAM],
1205
- [0, 0, 0, 0, () => MetricStreamFilters, () => MetricStreamFilters, () => TagList, () => MetricStreamStatisticsConfigurations, 2], 4
1206
- ];
1207
- var PutMetricStreamOutput$ = [3, n0, _PMSO,
1208
- 0,
1209
- [_Ar],
1210
- [0]
1211
- ];
1212
- var Range$ = [3, n0, _R,
1213
- 0,
1214
- [_ST, _ET],
1215
- [4, 4], 2
1216
- ];
1217
- var ResourceNotFound$ = [-3, n0, _RNF,
1218
- { [_aQE]: [`ResourceNotFound`, 404], [_e]: _c, [_hE]: 404 },
1219
- [_m],
1220
- [0]
1221
- ];
1222
- schema.TypeRegistry.for(n0).registerError(ResourceNotFound$, ResourceNotFound);
1223
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
1224
- { [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
1225
- [_RT, _RI, _M],
1226
- [0, 0, 0]
1227
- ];
1228
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1229
- var SetAlarmStateInput$ = [3, n0, _SASI,
1230
- 0,
1231
- [_AN, _SV, _SR, _SRD],
1232
- [0, 0, 0, 0], 3
1233
- ];
1234
- var SingleMetricAnomalyDetector$ = [3, n0, _SMAD,
1235
- 0,
1236
- [_AI, _N, _MN, _D, _S],
1237
- [0, 0, 0, () => Dimensions, 0]
1238
- ];
1239
- var StartMetricStreamsInput$ = [3, n0, _SMSI,
1240
- 0,
1241
- [_Nam],
1242
- [64 | 0], 1
1243
- ];
1244
- var StartMetricStreamsOutput$ = [3, n0, _SMSO,
1245
- 0,
1246
- [],
1247
- []
1248
- ];
1249
- var StatisticSet$ = [3, n0, _SS,
1250
- 0,
1251
- [_SC, _Su, _Mi, _Ma],
1252
- [1, 1, 1, 1], 4
1253
- ];
1254
- var StopMetricStreamsInput$ = [3, n0, _SMSIt,
1255
- 0,
1256
- [_Nam],
1257
- [64 | 0], 1
1258
- ];
1259
- var StopMetricStreamsOutput$ = [3, n0, _SMSOt,
1260
- 0,
1261
- [],
1262
- []
1263
- ];
1264
- var Tag$ = [3, n0, _Tag,
1265
- 0,
1266
- [_Ke, _V],
1267
- [0, 0], 2
1268
- ];
1269
- var TagResourceInput$ = [3, n0, _TRI,
1270
- 0,
1271
- [_RARN, _Ta],
1272
- [0, () => TagList], 2
1273
- ];
1274
- var TagResourceOutput$ = [3, n0, _TRO,
1275
- 0,
1276
- [],
1277
- []
1278
- ];
1279
- var UntagResourceInput$ = [3, n0, _URI,
1280
- 0,
1281
- [_RARN, _TK],
1282
- [0, 64 | 0], 2
1283
- ];
1284
- var UntagResourceOutput$ = [3, n0, _URO,
1285
- 0,
1286
- [],
1287
- []
1288
- ];
1289
- var __Unit = "unit";
1290
- var CloudWatchServiceException$ = [-3, _sm, "CloudWatchServiceException", 0, [], []];
1291
- schema.TypeRegistry.for(_sm).registerError(CloudWatchServiceException$, CloudWatchServiceException);
1292
- var AlarmContributors = [1, n0, _ACl,
1293
- 0, () => AlarmContributor$
1294
- ];
1295
- var AlarmHistoryItems = [1, n0, _AHIl,
1296
- 0, () => AlarmHistoryItem$
1297
- ];
1298
- var AnomalyDetectorExcludedTimeRanges = [1, n0, _ADETR,
1299
- 0, () => Range$
1300
- ];
1301
- var AnomalyDetectors = [1, n0, _ADn,
1302
- 0, () => AnomalyDetector$
1303
- ];
1304
- var BatchFailures = [1, n0, _BF,
1305
- 0, () => PartialFailure$
1306
- ];
1307
- var CompositeAlarms = [1, n0, _CAom,
1308
- 0, () => CompositeAlarm$
1309
- ];
1310
- var DashboardEntries = [1, n0, _DEa,
1311
- 0, () => DashboardEntry$
1312
- ];
1313
- var DashboardValidationMessages = [1, n0, _DVMa,
1314
- 0, () => DashboardValidationMessage$
1315
- ];
1316
- var Datapoints = [1, n0, _Dat,
1317
- 0, () => Datapoint$
1318
- ];
1319
- var DimensionFilters = [1, n0, _DFi,
1320
- 0, () => DimensionFilter$
1321
- ];
1322
- var Dimensions = [1, n0, _D,
1323
- 0, () => Dimension$
1324
- ];
1325
- var EntityMetricDataList = [1, n0, _EMDL,
1326
- 0, () => EntityMetricData$
1327
- ];
1328
- var InsightRuleContributorDatapoints = [1, n0, _IRCDn,
1329
- 0, () => InsightRuleContributorDatapoint$
1330
- ];
1331
- var InsightRuleContributors = [1, n0, _IRCn,
1332
- 0, () => InsightRuleContributor$
1333
- ];
1334
- var InsightRuleMetricDatapoints = [1, n0, _IRMDn,
1335
- 0, () => InsightRuleMetricDatapoint$
1336
- ];
1337
- var InsightRules = [1, n0, _IR,
1338
- 0, () => InsightRule$
1339
- ];
1340
- var ManagedRuleDescriptions = [1, n0, _MRDa,
1341
- 0, () => ManagedRuleDescription$
1342
- ];
1343
- var ManagedRules = [1, n0, _MRana,
1344
- 0, () => ManagedRule$
1345
- ];
1346
- var MetricAlarms = [1, n0, _MA,
1347
- 0, () => MetricAlarm$
1348
- ];
1349
- var MetricData = [1, n0, _MD,
1350
- 0, () => MetricDatum$
1351
- ];
1352
- var MetricDataQueries = [1, n0, _MDQ,
1353
- 0, () => MetricDataQuery$
1354
- ];
1355
- var MetricDataResultMessages = [1, n0, _MDRM,
1356
- 0, () => MessageData$
1357
- ];
1358
- var MetricDataResults = [1, n0, _MDR,
1359
- 0, () => MetricDataResult$
1360
- ];
1361
- var Metrics = [1, n0, _Me,
1362
- 0, () => Metric$
1363
- ];
1364
- var MetricStreamEntries = [1, n0, _MSEe,
1365
- 0, () => MetricStreamEntry$
1366
- ];
1367
- var MetricStreamFilters = [1, n0, _MSFe,
1368
- 0, () => MetricStreamFilter$
1369
- ];
1370
- var MetricStreamStatisticsConfigurations = [1, n0, _MSSCe,
1371
- 0, () => MetricStreamStatisticsConfiguration$
1372
- ];
1373
- var MetricStreamStatisticsIncludeMetrics = [1, n0, _MSSIM,
1374
- 0, () => MetricStreamStatisticsMetric$
1375
- ];
1376
- var TagList = [1, n0, _TL,
1377
- 0, () => Tag$
1378
- ];
1379
- var DeleteAlarms$ = [9, n0, _DAe,
1380
- 0, () => DeleteAlarmsInput$, () => __Unit
1381
- ];
1382
- var DeleteAnomalyDetector$ = [9, n0, _DAD,
1383
- 0, () => DeleteAnomalyDetectorInput$, () => DeleteAnomalyDetectorOutput$
1384
- ];
1385
- var DeleteDashboards$ = [9, n0, _DD,
1386
- 0, () => DeleteDashboardsInput$, () => DeleteDashboardsOutput$
1387
- ];
1388
- var DeleteInsightRules$ = [9, n0, _DIR,
1389
- 0, () => DeleteInsightRulesInput$, () => DeleteInsightRulesOutput$
1390
- ];
1391
- var DeleteMetricStream$ = [9, n0, _DMS,
1392
- 0, () => DeleteMetricStreamInput$, () => DeleteMetricStreamOutput$
1393
- ];
1394
- var DescribeAlarmContributors$ = [9, n0, _DAC,
1395
- 0, () => DescribeAlarmContributorsInput$, () => DescribeAlarmContributorsOutput$
1396
- ];
1397
- var DescribeAlarmHistory$ = [9, n0, _DAH,
1398
- 0, () => DescribeAlarmHistoryInput$, () => DescribeAlarmHistoryOutput$
1399
- ];
1400
- var DescribeAlarms$ = [9, n0, _DAes,
1401
- 0, () => DescribeAlarmsInput$, () => DescribeAlarmsOutput$
1402
- ];
1403
- var DescribeAlarmsForMetric$ = [9, n0, _DAFM,
1404
- 0, () => DescribeAlarmsForMetricInput$, () => DescribeAlarmsForMetricOutput$
1405
- ];
1406
- var DescribeAnomalyDetectors$ = [9, n0, _DADe,
1407
- 0, () => DescribeAnomalyDetectorsInput$, () => DescribeAnomalyDetectorsOutput$
1408
- ];
1409
- var DescribeInsightRules$ = [9, n0, _DIRe,
1410
- 0, () => DescribeInsightRulesInput$, () => DescribeInsightRulesOutput$
1411
- ];
1412
- var DisableAlarmActions$ = [9, n0, _DAA,
1413
- 0, () => DisableAlarmActionsInput$, () => __Unit
1414
- ];
1415
- var DisableInsightRules$ = [9, n0, _DIRi,
1416
- 0, () => DisableInsightRulesInput$, () => DisableInsightRulesOutput$
1417
- ];
1418
- var EnableAlarmActions$ = [9, n0, _EAA,
1419
- 0, () => EnableAlarmActionsInput$, () => __Unit
1420
- ];
1421
- var EnableInsightRules$ = [9, n0, _EIR,
1422
- 0, () => EnableInsightRulesInput$, () => EnableInsightRulesOutput$
1423
- ];
1424
- var GetDashboard$ = [9, n0, _GD,
1425
- 0, () => GetDashboardInput$, () => GetDashboardOutput$
1426
- ];
1427
- var GetInsightRuleReport$ = [9, n0, _GIRR,
1428
- 0, () => GetInsightRuleReportInput$, () => GetInsightRuleReportOutput$
1429
- ];
1430
- var GetMetricData$ = [9, n0, _GMD,
1431
- 0, () => GetMetricDataInput$, () => GetMetricDataOutput$
1432
- ];
1433
- var GetMetricStatistics$ = [9, n0, _GMS,
1434
- 0, () => GetMetricStatisticsInput$, () => GetMetricStatisticsOutput$
1435
- ];
1436
- var GetMetricStream$ = [9, n0, _GMSe,
1437
- 0, () => GetMetricStreamInput$, () => GetMetricStreamOutput$
1438
- ];
1439
- var GetMetricWidgetImage$ = [9, n0, _GMWI,
1440
- 0, () => GetMetricWidgetImageInput$, () => GetMetricWidgetImageOutput$
1441
- ];
1442
- var ListDashboards$ = [9, n0, _LD,
1443
- 0, () => ListDashboardsInput$, () => ListDashboardsOutput$
1444
- ];
1445
- var ListManagedInsightRules$ = [9, n0, _LMIR,
1446
- 0, () => ListManagedInsightRulesInput$, () => ListManagedInsightRulesOutput$
1447
- ];
1448
- var ListMetrics$ = [9, n0, _LMi,
1449
- 0, () => ListMetricsInput$, () => ListMetricsOutput$
1450
- ];
1451
- var ListMetricStreams$ = [9, n0, _LMS,
1452
- 0, () => ListMetricStreamsInput$, () => ListMetricStreamsOutput$
1453
- ];
1454
- var ListTagsForResource$ = [9, n0, _LTFR,
1455
- 0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
1456
- ];
1457
- var PutAnomalyDetector$ = [9, n0, _PAD,
1458
- 0, () => PutAnomalyDetectorInput$, () => PutAnomalyDetectorOutput$
1459
- ];
1460
- var PutCompositeAlarm$ = [9, n0, _PCA,
1461
- 0, () => PutCompositeAlarmInput$, () => __Unit
1462
- ];
1463
- var PutDashboard$ = [9, n0, _PD,
1464
- 0, () => PutDashboardInput$, () => PutDashboardOutput$
1465
- ];
1466
- var PutInsightRule$ = [9, n0, _PIR,
1467
- 0, () => PutInsightRuleInput$, () => PutInsightRuleOutput$
1468
- ];
1469
- var PutManagedInsightRules$ = [9, n0, _PMIR,
1470
- 0, () => PutManagedInsightRulesInput$, () => PutManagedInsightRulesOutput$
1471
- ];
1472
- var PutMetricAlarm$ = [9, n0, _PMA,
1473
- 0, () => PutMetricAlarmInput$, () => __Unit
1474
- ];
1475
- var PutMetricData$ = [9, n0, _PMD,
1476
- 0, () => PutMetricDataInput$, () => __Unit
1477
- ];
1478
- var PutMetricStream$ = [9, n0, _PMS,
1479
- 0, () => PutMetricStreamInput$, () => PutMetricStreamOutput$
1480
- ];
1481
- var SetAlarmState$ = [9, n0, _SAS,
1482
- 0, () => SetAlarmStateInput$, () => __Unit
1483
- ];
1484
- var StartMetricStreams$ = [9, n0, _SMS,
1485
- 0, () => StartMetricStreamsInput$, () => StartMetricStreamsOutput$
1486
- ];
1487
- var StopMetricStreams$ = [9, n0, _SMSt,
1488
- 0, () => StopMetricStreamsInput$, () => StopMetricStreamsOutput$
1489
- ];
1490
- var TagResource$ = [9, n0, _TR,
1491
- 0, () => TagResourceInput$, () => TagResourceOutput$
1492
- ];
1493
- var UntagResource$ = [9, n0, _UR,
1494
- 0, () => UntagResourceInput$, () => UntagResourceOutput$
1495
- ];
1496
-
1497
119
  class DeleteAlarmsCommand extends smithyClient.Command
1498
120
  .classBuilder()
1499
121
  .ep(commonParams)
@@ -1502,7 +124,7 @@ class DeleteAlarmsCommand extends smithyClient.Command
1502
124
  })
1503
125
  .s("GraniteServiceVersion20100801", "DeleteAlarms", {})
1504
126
  .n("CloudWatchClient", "DeleteAlarmsCommand")
1505
- .sc(DeleteAlarms$)
127
+ .sc(schemas_0.DeleteAlarms$)
1506
128
  .build() {
1507
129
  }
1508
130
 
@@ -1514,7 +136,7 @@ class DeleteAnomalyDetectorCommand extends smithyClient.Command
1514
136
  })
1515
137
  .s("GraniteServiceVersion20100801", "DeleteAnomalyDetector", {})
1516
138
  .n("CloudWatchClient", "DeleteAnomalyDetectorCommand")
1517
- .sc(DeleteAnomalyDetector$)
139
+ .sc(schemas_0.DeleteAnomalyDetector$)
1518
140
  .build() {
1519
141
  }
1520
142
 
@@ -1526,7 +148,7 @@ class DeleteDashboardsCommand extends smithyClient.Command
1526
148
  })
1527
149
  .s("GraniteServiceVersion20100801", "DeleteDashboards", {})
1528
150
  .n("CloudWatchClient", "DeleteDashboardsCommand")
1529
- .sc(DeleteDashboards$)
151
+ .sc(schemas_0.DeleteDashboards$)
1530
152
  .build() {
1531
153
  }
1532
154
 
@@ -1538,7 +160,7 @@ class DeleteInsightRulesCommand extends smithyClient.Command
1538
160
  })
1539
161
  .s("GraniteServiceVersion20100801", "DeleteInsightRules", {})
1540
162
  .n("CloudWatchClient", "DeleteInsightRulesCommand")
1541
- .sc(DeleteInsightRules$)
163
+ .sc(schemas_0.DeleteInsightRules$)
1542
164
  .build() {
1543
165
  }
1544
166
 
@@ -1550,7 +172,7 @@ class DeleteMetricStreamCommand extends smithyClient.Command
1550
172
  })
1551
173
  .s("GraniteServiceVersion20100801", "DeleteMetricStream", {})
1552
174
  .n("CloudWatchClient", "DeleteMetricStreamCommand")
1553
- .sc(DeleteMetricStream$)
175
+ .sc(schemas_0.DeleteMetricStream$)
1554
176
  .build() {
1555
177
  }
1556
178
 
@@ -1562,7 +184,7 @@ class DescribeAlarmContributorsCommand extends smithyClient.Command
1562
184
  })
1563
185
  .s("GraniteServiceVersion20100801", "DescribeAlarmContributors", {})
1564
186
  .n("CloudWatchClient", "DescribeAlarmContributorsCommand")
1565
- .sc(DescribeAlarmContributors$)
187
+ .sc(schemas_0.DescribeAlarmContributors$)
1566
188
  .build() {
1567
189
  }
1568
190
 
@@ -1574,7 +196,7 @@ class DescribeAlarmHistoryCommand extends smithyClient.Command
1574
196
  })
1575
197
  .s("GraniteServiceVersion20100801", "DescribeAlarmHistory", {})
1576
198
  .n("CloudWatchClient", "DescribeAlarmHistoryCommand")
1577
- .sc(DescribeAlarmHistory$)
199
+ .sc(schemas_0.DescribeAlarmHistory$)
1578
200
  .build() {
1579
201
  }
1580
202
 
@@ -1586,7 +208,7 @@ class DescribeAlarmsCommand extends smithyClient.Command
1586
208
  })
1587
209
  .s("GraniteServiceVersion20100801", "DescribeAlarms", {})
1588
210
  .n("CloudWatchClient", "DescribeAlarmsCommand")
1589
- .sc(DescribeAlarms$)
211
+ .sc(schemas_0.DescribeAlarms$)
1590
212
  .build() {
1591
213
  }
1592
214
 
@@ -1598,7 +220,7 @@ class DescribeAlarmsForMetricCommand extends smithyClient.Command
1598
220
  })
1599
221
  .s("GraniteServiceVersion20100801", "DescribeAlarmsForMetric", {})
1600
222
  .n("CloudWatchClient", "DescribeAlarmsForMetricCommand")
1601
- .sc(DescribeAlarmsForMetric$)
223
+ .sc(schemas_0.DescribeAlarmsForMetric$)
1602
224
  .build() {
1603
225
  }
1604
226
 
@@ -1610,7 +232,7 @@ class DescribeAnomalyDetectorsCommand extends smithyClient.Command
1610
232
  })
1611
233
  .s("GraniteServiceVersion20100801", "DescribeAnomalyDetectors", {})
1612
234
  .n("CloudWatchClient", "DescribeAnomalyDetectorsCommand")
1613
- .sc(DescribeAnomalyDetectors$)
235
+ .sc(schemas_0.DescribeAnomalyDetectors$)
1614
236
  .build() {
1615
237
  }
1616
238
 
@@ -1622,7 +244,7 @@ class DescribeInsightRulesCommand extends smithyClient.Command
1622
244
  })
1623
245
  .s("GraniteServiceVersion20100801", "DescribeInsightRules", {})
1624
246
  .n("CloudWatchClient", "DescribeInsightRulesCommand")
1625
- .sc(DescribeInsightRules$)
247
+ .sc(schemas_0.DescribeInsightRules$)
1626
248
  .build() {
1627
249
  }
1628
250
 
@@ -1634,7 +256,7 @@ class DisableAlarmActionsCommand extends smithyClient.Command
1634
256
  })
1635
257
  .s("GraniteServiceVersion20100801", "DisableAlarmActions", {})
1636
258
  .n("CloudWatchClient", "DisableAlarmActionsCommand")
1637
- .sc(DisableAlarmActions$)
259
+ .sc(schemas_0.DisableAlarmActions$)
1638
260
  .build() {
1639
261
  }
1640
262
 
@@ -1646,7 +268,7 @@ class DisableInsightRulesCommand extends smithyClient.Command
1646
268
  })
1647
269
  .s("GraniteServiceVersion20100801", "DisableInsightRules", {})
1648
270
  .n("CloudWatchClient", "DisableInsightRulesCommand")
1649
- .sc(DisableInsightRules$)
271
+ .sc(schemas_0.DisableInsightRules$)
1650
272
  .build() {
1651
273
  }
1652
274
 
@@ -1658,7 +280,7 @@ class EnableAlarmActionsCommand extends smithyClient.Command
1658
280
  })
1659
281
  .s("GraniteServiceVersion20100801", "EnableAlarmActions", {})
1660
282
  .n("CloudWatchClient", "EnableAlarmActionsCommand")
1661
- .sc(EnableAlarmActions$)
283
+ .sc(schemas_0.EnableAlarmActions$)
1662
284
  .build() {
1663
285
  }
1664
286
 
@@ -1670,7 +292,7 @@ class EnableInsightRulesCommand extends smithyClient.Command
1670
292
  })
1671
293
  .s("GraniteServiceVersion20100801", "EnableInsightRules", {})
1672
294
  .n("CloudWatchClient", "EnableInsightRulesCommand")
1673
- .sc(EnableInsightRules$)
295
+ .sc(schemas_0.EnableInsightRules$)
1674
296
  .build() {
1675
297
  }
1676
298
 
@@ -1682,7 +304,7 @@ class GetDashboardCommand extends smithyClient.Command
1682
304
  })
1683
305
  .s("GraniteServiceVersion20100801", "GetDashboard", {})
1684
306
  .n("CloudWatchClient", "GetDashboardCommand")
1685
- .sc(GetDashboard$)
307
+ .sc(schemas_0.GetDashboard$)
1686
308
  .build() {
1687
309
  }
1688
310
 
@@ -1694,7 +316,7 @@ class GetInsightRuleReportCommand extends smithyClient.Command
1694
316
  })
1695
317
  .s("GraniteServiceVersion20100801", "GetInsightRuleReport", {})
1696
318
  .n("CloudWatchClient", "GetInsightRuleReportCommand")
1697
- .sc(GetInsightRuleReport$)
319
+ .sc(schemas_0.GetInsightRuleReport$)
1698
320
  .build() {
1699
321
  }
1700
322
 
@@ -1706,7 +328,7 @@ class GetMetricDataCommand extends smithyClient.Command
1706
328
  })
1707
329
  .s("GraniteServiceVersion20100801", "GetMetricData", {})
1708
330
  .n("CloudWatchClient", "GetMetricDataCommand")
1709
- .sc(GetMetricData$)
331
+ .sc(schemas_0.GetMetricData$)
1710
332
  .build() {
1711
333
  }
1712
334
 
@@ -1718,7 +340,7 @@ class GetMetricStatisticsCommand extends smithyClient.Command
1718
340
  })
1719
341
  .s("GraniteServiceVersion20100801", "GetMetricStatistics", {})
1720
342
  .n("CloudWatchClient", "GetMetricStatisticsCommand")
1721
- .sc(GetMetricStatistics$)
343
+ .sc(schemas_0.GetMetricStatistics$)
1722
344
  .build() {
1723
345
  }
1724
346
 
@@ -1730,7 +352,7 @@ class GetMetricStreamCommand extends smithyClient.Command
1730
352
  })
1731
353
  .s("GraniteServiceVersion20100801", "GetMetricStream", {})
1732
354
  .n("CloudWatchClient", "GetMetricStreamCommand")
1733
- .sc(GetMetricStream$)
355
+ .sc(schemas_0.GetMetricStream$)
1734
356
  .build() {
1735
357
  }
1736
358
 
@@ -1742,7 +364,7 @@ class GetMetricWidgetImageCommand extends smithyClient.Command
1742
364
  })
1743
365
  .s("GraniteServiceVersion20100801", "GetMetricWidgetImage", {})
1744
366
  .n("CloudWatchClient", "GetMetricWidgetImageCommand")
1745
- .sc(GetMetricWidgetImage$)
367
+ .sc(schemas_0.GetMetricWidgetImage$)
1746
368
  .build() {
1747
369
  }
1748
370
 
@@ -1754,7 +376,7 @@ class ListDashboardsCommand extends smithyClient.Command
1754
376
  })
1755
377
  .s("GraniteServiceVersion20100801", "ListDashboards", {})
1756
378
  .n("CloudWatchClient", "ListDashboardsCommand")
1757
- .sc(ListDashboards$)
379
+ .sc(schemas_0.ListDashboards$)
1758
380
  .build() {
1759
381
  }
1760
382
 
@@ -1766,7 +388,7 @@ class ListManagedInsightRulesCommand extends smithyClient.Command
1766
388
  })
1767
389
  .s("GraniteServiceVersion20100801", "ListManagedInsightRules", {})
1768
390
  .n("CloudWatchClient", "ListManagedInsightRulesCommand")
1769
- .sc(ListManagedInsightRules$)
391
+ .sc(schemas_0.ListManagedInsightRules$)
1770
392
  .build() {
1771
393
  }
1772
394
 
@@ -1778,7 +400,7 @@ class ListMetricsCommand extends smithyClient.Command
1778
400
  })
1779
401
  .s("GraniteServiceVersion20100801", "ListMetrics", {})
1780
402
  .n("CloudWatchClient", "ListMetricsCommand")
1781
- .sc(ListMetrics$)
403
+ .sc(schemas_0.ListMetrics$)
1782
404
  .build() {
1783
405
  }
1784
406
 
@@ -1790,7 +412,7 @@ class ListMetricStreamsCommand extends smithyClient.Command
1790
412
  })
1791
413
  .s("GraniteServiceVersion20100801", "ListMetricStreams", {})
1792
414
  .n("CloudWatchClient", "ListMetricStreamsCommand")
1793
- .sc(ListMetricStreams$)
415
+ .sc(schemas_0.ListMetricStreams$)
1794
416
  .build() {
1795
417
  }
1796
418
 
@@ -1802,7 +424,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1802
424
  })
1803
425
  .s("GraniteServiceVersion20100801", "ListTagsForResource", {})
1804
426
  .n("CloudWatchClient", "ListTagsForResourceCommand")
1805
- .sc(ListTagsForResource$)
427
+ .sc(schemas_0.ListTagsForResource$)
1806
428
  .build() {
1807
429
  }
1808
430
 
@@ -1814,7 +436,7 @@ class PutAnomalyDetectorCommand extends smithyClient.Command
1814
436
  })
1815
437
  .s("GraniteServiceVersion20100801", "PutAnomalyDetector", {})
1816
438
  .n("CloudWatchClient", "PutAnomalyDetectorCommand")
1817
- .sc(PutAnomalyDetector$)
439
+ .sc(schemas_0.PutAnomalyDetector$)
1818
440
  .build() {
1819
441
  }
1820
442
 
@@ -1826,7 +448,7 @@ class PutCompositeAlarmCommand extends smithyClient.Command
1826
448
  })
1827
449
  .s("GraniteServiceVersion20100801", "PutCompositeAlarm", {})
1828
450
  .n("CloudWatchClient", "PutCompositeAlarmCommand")
1829
- .sc(PutCompositeAlarm$)
451
+ .sc(schemas_0.PutCompositeAlarm$)
1830
452
  .build() {
1831
453
  }
1832
454
 
@@ -1838,7 +460,7 @@ class PutDashboardCommand extends smithyClient.Command
1838
460
  })
1839
461
  .s("GraniteServiceVersion20100801", "PutDashboard", {})
1840
462
  .n("CloudWatchClient", "PutDashboardCommand")
1841
- .sc(PutDashboard$)
463
+ .sc(schemas_0.PutDashboard$)
1842
464
  .build() {
1843
465
  }
1844
466
 
@@ -1850,7 +472,7 @@ class PutInsightRuleCommand extends smithyClient.Command
1850
472
  })
1851
473
  .s("GraniteServiceVersion20100801", "PutInsightRule", {})
1852
474
  .n("CloudWatchClient", "PutInsightRuleCommand")
1853
- .sc(PutInsightRule$)
475
+ .sc(schemas_0.PutInsightRule$)
1854
476
  .build() {
1855
477
  }
1856
478
 
@@ -1862,7 +484,7 @@ class PutManagedInsightRulesCommand extends smithyClient.Command
1862
484
  })
1863
485
  .s("GraniteServiceVersion20100801", "PutManagedInsightRules", {})
1864
486
  .n("CloudWatchClient", "PutManagedInsightRulesCommand")
1865
- .sc(PutManagedInsightRules$)
487
+ .sc(schemas_0.PutManagedInsightRules$)
1866
488
  .build() {
1867
489
  }
1868
490
 
@@ -1874,7 +496,7 @@ class PutMetricAlarmCommand extends smithyClient.Command
1874
496
  })
1875
497
  .s("GraniteServiceVersion20100801", "PutMetricAlarm", {})
1876
498
  .n("CloudWatchClient", "PutMetricAlarmCommand")
1877
- .sc(PutMetricAlarm$)
499
+ .sc(schemas_0.PutMetricAlarm$)
1878
500
  .build() {
1879
501
  }
1880
502
 
@@ -1891,7 +513,7 @@ class PutMetricDataCommand extends smithyClient.Command
1891
513
  })
1892
514
  .s("GraniteServiceVersion20100801", "PutMetricData", {})
1893
515
  .n("CloudWatchClient", "PutMetricDataCommand")
1894
- .sc(PutMetricData$)
516
+ .sc(schemas_0.PutMetricData$)
1895
517
  .build() {
1896
518
  }
1897
519
 
@@ -1903,7 +525,7 @@ class PutMetricStreamCommand extends smithyClient.Command
1903
525
  })
1904
526
  .s("GraniteServiceVersion20100801", "PutMetricStream", {})
1905
527
  .n("CloudWatchClient", "PutMetricStreamCommand")
1906
- .sc(PutMetricStream$)
528
+ .sc(schemas_0.PutMetricStream$)
1907
529
  .build() {
1908
530
  }
1909
531
 
@@ -1915,7 +537,7 @@ class SetAlarmStateCommand extends smithyClient.Command
1915
537
  })
1916
538
  .s("GraniteServiceVersion20100801", "SetAlarmState", {})
1917
539
  .n("CloudWatchClient", "SetAlarmStateCommand")
1918
- .sc(SetAlarmState$)
540
+ .sc(schemas_0.SetAlarmState$)
1919
541
  .build() {
1920
542
  }
1921
543
 
@@ -1927,7 +549,7 @@ class StartMetricStreamsCommand extends smithyClient.Command
1927
549
  })
1928
550
  .s("GraniteServiceVersion20100801", "StartMetricStreams", {})
1929
551
  .n("CloudWatchClient", "StartMetricStreamsCommand")
1930
- .sc(StartMetricStreams$)
552
+ .sc(schemas_0.StartMetricStreams$)
1931
553
  .build() {
1932
554
  }
1933
555
 
@@ -1939,7 +561,7 @@ class StopMetricStreamsCommand extends smithyClient.Command
1939
561
  })
1940
562
  .s("GraniteServiceVersion20100801", "StopMetricStreams", {})
1941
563
  .n("CloudWatchClient", "StopMetricStreamsCommand")
1942
- .sc(StopMetricStreams$)
564
+ .sc(schemas_0.StopMetricStreams$)
1943
565
  .build() {
1944
566
  }
1945
567
 
@@ -1951,7 +573,7 @@ class TagResourceCommand extends smithyClient.Command
1951
573
  })
1952
574
  .s("GraniteServiceVersion20100801", "TagResource", {})
1953
575
  .n("CloudWatchClient", "TagResourceCommand")
1954
- .sc(TagResource$)
576
+ .sc(schemas_0.TagResource$)
1955
577
  .build() {
1956
578
  }
1957
579
 
@@ -1963,7 +585,7 @@ class UntagResourceCommand extends smithyClient.Command
1963
585
  })
1964
586
  .s("GraniteServiceVersion20100801", "UntagResource", {})
1965
587
  .n("CloudWatchClient", "UntagResourceCommand")
1966
- .sc(UntagResource$)
588
+ .sc(schemas_0.UntagResource$)
1967
589
  .build() {
1968
590
  }
1969
591
 
@@ -2212,239 +834,65 @@ Object.defineProperty(exports, "__Client", {
2212
834
  enumerable: true,
2213
835
  get: function () { return smithyClient.Client; }
2214
836
  });
837
+ Object.defineProperty(exports, "CloudWatchServiceException", {
838
+ enumerable: true,
839
+ get: function () { return CloudWatchServiceException.CloudWatchServiceException; }
840
+ });
2215
841
  exports.ActionsSuppressedBy = ActionsSuppressedBy;
2216
- exports.AlarmContributor$ = AlarmContributor$;
2217
- exports.AlarmHistoryItem$ = AlarmHistoryItem$;
2218
842
  exports.AlarmType = AlarmType;
2219
- exports.AnomalyDetector$ = AnomalyDetector$;
2220
- exports.AnomalyDetectorConfiguration$ = AnomalyDetectorConfiguration$;
2221
843
  exports.AnomalyDetectorStateValue = AnomalyDetectorStateValue;
2222
844
  exports.AnomalyDetectorType = AnomalyDetectorType;
2223
845
  exports.CloudWatch = CloudWatch;
2224
846
  exports.CloudWatchClient = CloudWatchClient;
2225
- exports.CloudWatchServiceException = CloudWatchServiceException;
2226
- exports.CloudWatchServiceException$ = CloudWatchServiceException$;
2227
847
  exports.ComparisonOperator = ComparisonOperator;
2228
- exports.CompositeAlarm$ = CompositeAlarm$;
2229
- exports.ConcurrentModificationException = ConcurrentModificationException;
2230
- exports.ConcurrentModificationException$ = ConcurrentModificationException$;
2231
- exports.ConflictException = ConflictException;
2232
- exports.ConflictException$ = ConflictException$;
2233
- exports.DashboardEntry$ = DashboardEntry$;
2234
- exports.DashboardInvalidInputError = DashboardInvalidInputError;
2235
- exports.DashboardInvalidInputError$ = DashboardInvalidInputError$;
2236
- exports.DashboardNotFoundError = DashboardNotFoundError;
2237
- exports.DashboardNotFoundError$ = DashboardNotFoundError$;
2238
- exports.DashboardValidationMessage$ = DashboardValidationMessage$;
2239
- exports.Datapoint$ = Datapoint$;
2240
- exports.DeleteAlarms$ = DeleteAlarms$;
2241
848
  exports.DeleteAlarmsCommand = DeleteAlarmsCommand;
2242
- exports.DeleteAlarmsInput$ = DeleteAlarmsInput$;
2243
- exports.DeleteAnomalyDetector$ = DeleteAnomalyDetector$;
2244
849
  exports.DeleteAnomalyDetectorCommand = DeleteAnomalyDetectorCommand;
2245
- exports.DeleteAnomalyDetectorInput$ = DeleteAnomalyDetectorInput$;
2246
- exports.DeleteAnomalyDetectorOutput$ = DeleteAnomalyDetectorOutput$;
2247
- exports.DeleteDashboards$ = DeleteDashboards$;
2248
850
  exports.DeleteDashboardsCommand = DeleteDashboardsCommand;
2249
- exports.DeleteDashboardsInput$ = DeleteDashboardsInput$;
2250
- exports.DeleteDashboardsOutput$ = DeleteDashboardsOutput$;
2251
- exports.DeleteInsightRules$ = DeleteInsightRules$;
2252
851
  exports.DeleteInsightRulesCommand = DeleteInsightRulesCommand;
2253
- exports.DeleteInsightRulesInput$ = DeleteInsightRulesInput$;
2254
- exports.DeleteInsightRulesOutput$ = DeleteInsightRulesOutput$;
2255
- exports.DeleteMetricStream$ = DeleteMetricStream$;
2256
852
  exports.DeleteMetricStreamCommand = DeleteMetricStreamCommand;
2257
- exports.DeleteMetricStreamInput$ = DeleteMetricStreamInput$;
2258
- exports.DeleteMetricStreamOutput$ = DeleteMetricStreamOutput$;
2259
- exports.DescribeAlarmContributors$ = DescribeAlarmContributors$;
2260
853
  exports.DescribeAlarmContributorsCommand = DescribeAlarmContributorsCommand;
2261
- exports.DescribeAlarmContributorsInput$ = DescribeAlarmContributorsInput$;
2262
- exports.DescribeAlarmContributorsOutput$ = DescribeAlarmContributorsOutput$;
2263
- exports.DescribeAlarmHistory$ = DescribeAlarmHistory$;
2264
854
  exports.DescribeAlarmHistoryCommand = DescribeAlarmHistoryCommand;
2265
- exports.DescribeAlarmHistoryInput$ = DescribeAlarmHistoryInput$;
2266
- exports.DescribeAlarmHistoryOutput$ = DescribeAlarmHistoryOutput$;
2267
- exports.DescribeAlarms$ = DescribeAlarms$;
2268
855
  exports.DescribeAlarmsCommand = DescribeAlarmsCommand;
2269
- exports.DescribeAlarmsForMetric$ = DescribeAlarmsForMetric$;
2270
856
  exports.DescribeAlarmsForMetricCommand = DescribeAlarmsForMetricCommand;
2271
- exports.DescribeAlarmsForMetricInput$ = DescribeAlarmsForMetricInput$;
2272
- exports.DescribeAlarmsForMetricOutput$ = DescribeAlarmsForMetricOutput$;
2273
- exports.DescribeAlarmsInput$ = DescribeAlarmsInput$;
2274
- exports.DescribeAlarmsOutput$ = DescribeAlarmsOutput$;
2275
- exports.DescribeAnomalyDetectors$ = DescribeAnomalyDetectors$;
2276
857
  exports.DescribeAnomalyDetectorsCommand = DescribeAnomalyDetectorsCommand;
2277
- exports.DescribeAnomalyDetectorsInput$ = DescribeAnomalyDetectorsInput$;
2278
- exports.DescribeAnomalyDetectorsOutput$ = DescribeAnomalyDetectorsOutput$;
2279
- exports.DescribeInsightRules$ = DescribeInsightRules$;
2280
858
  exports.DescribeInsightRulesCommand = DescribeInsightRulesCommand;
2281
- exports.DescribeInsightRulesInput$ = DescribeInsightRulesInput$;
2282
- exports.DescribeInsightRulesOutput$ = DescribeInsightRulesOutput$;
2283
- exports.Dimension$ = Dimension$;
2284
- exports.DimensionFilter$ = DimensionFilter$;
2285
- exports.DisableAlarmActions$ = DisableAlarmActions$;
2286
859
  exports.DisableAlarmActionsCommand = DisableAlarmActionsCommand;
2287
- exports.DisableAlarmActionsInput$ = DisableAlarmActionsInput$;
2288
- exports.DisableInsightRules$ = DisableInsightRules$;
2289
860
  exports.DisableInsightRulesCommand = DisableInsightRulesCommand;
2290
- exports.DisableInsightRulesInput$ = DisableInsightRulesInput$;
2291
- exports.DisableInsightRulesOutput$ = DisableInsightRulesOutput$;
2292
- exports.EnableAlarmActions$ = EnableAlarmActions$;
2293
861
  exports.EnableAlarmActionsCommand = EnableAlarmActionsCommand;
2294
- exports.EnableAlarmActionsInput$ = EnableAlarmActionsInput$;
2295
- exports.EnableInsightRules$ = EnableInsightRules$;
2296
862
  exports.EnableInsightRulesCommand = EnableInsightRulesCommand;
2297
- exports.EnableInsightRulesInput$ = EnableInsightRulesInput$;
2298
- exports.EnableInsightRulesOutput$ = EnableInsightRulesOutput$;
2299
- exports.Entity$ = Entity$;
2300
- exports.EntityMetricData$ = EntityMetricData$;
2301
863
  exports.EvaluationState = EvaluationState;
2302
- exports.GetDashboard$ = GetDashboard$;
2303
864
  exports.GetDashboardCommand = GetDashboardCommand;
2304
- exports.GetDashboardInput$ = GetDashboardInput$;
2305
- exports.GetDashboardOutput$ = GetDashboardOutput$;
2306
- exports.GetInsightRuleReport$ = GetInsightRuleReport$;
2307
865
  exports.GetInsightRuleReportCommand = GetInsightRuleReportCommand;
2308
- exports.GetInsightRuleReportInput$ = GetInsightRuleReportInput$;
2309
- exports.GetInsightRuleReportOutput$ = GetInsightRuleReportOutput$;
2310
- exports.GetMetricData$ = GetMetricData$;
2311
866
  exports.GetMetricDataCommand = GetMetricDataCommand;
2312
- exports.GetMetricDataInput$ = GetMetricDataInput$;
2313
- exports.GetMetricDataOutput$ = GetMetricDataOutput$;
2314
- exports.GetMetricStatistics$ = GetMetricStatistics$;
2315
867
  exports.GetMetricStatisticsCommand = GetMetricStatisticsCommand;
2316
- exports.GetMetricStatisticsInput$ = GetMetricStatisticsInput$;
2317
- exports.GetMetricStatisticsOutput$ = GetMetricStatisticsOutput$;
2318
- exports.GetMetricStream$ = GetMetricStream$;
2319
868
  exports.GetMetricStreamCommand = GetMetricStreamCommand;
2320
- exports.GetMetricStreamInput$ = GetMetricStreamInput$;
2321
- exports.GetMetricStreamOutput$ = GetMetricStreamOutput$;
2322
- exports.GetMetricWidgetImage$ = GetMetricWidgetImage$;
2323
869
  exports.GetMetricWidgetImageCommand = GetMetricWidgetImageCommand;
2324
- exports.GetMetricWidgetImageInput$ = GetMetricWidgetImageInput$;
2325
- exports.GetMetricWidgetImageOutput$ = GetMetricWidgetImageOutput$;
2326
870
  exports.HistoryItemType = HistoryItemType;
2327
- exports.InsightRule$ = InsightRule$;
2328
- exports.InsightRuleContributor$ = InsightRuleContributor$;
2329
- exports.InsightRuleContributorDatapoint$ = InsightRuleContributorDatapoint$;
2330
- exports.InsightRuleMetricDatapoint$ = InsightRuleMetricDatapoint$;
2331
- exports.InternalServiceFault = InternalServiceFault;
2332
- exports.InternalServiceFault$ = InternalServiceFault$;
2333
- exports.InvalidFormatFault = InvalidFormatFault;
2334
- exports.InvalidFormatFault$ = InvalidFormatFault$;
2335
- exports.InvalidNextToken = InvalidNextToken;
2336
- exports.InvalidNextToken$ = InvalidNextToken$;
2337
- exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
2338
- exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
2339
- exports.InvalidParameterValueException = InvalidParameterValueException;
2340
- exports.InvalidParameterValueException$ = InvalidParameterValueException$;
2341
- exports.LabelOptions$ = LabelOptions$;
2342
- exports.LimitExceededException = LimitExceededException;
2343
- exports.LimitExceededException$ = LimitExceededException$;
2344
- exports.LimitExceededFault = LimitExceededFault;
2345
- exports.LimitExceededFault$ = LimitExceededFault$;
2346
- exports.ListDashboards$ = ListDashboards$;
2347
871
  exports.ListDashboardsCommand = ListDashboardsCommand;
2348
- exports.ListDashboardsInput$ = ListDashboardsInput$;
2349
- exports.ListDashboardsOutput$ = ListDashboardsOutput$;
2350
- exports.ListManagedInsightRules$ = ListManagedInsightRules$;
2351
872
  exports.ListManagedInsightRulesCommand = ListManagedInsightRulesCommand;
2352
- exports.ListManagedInsightRulesInput$ = ListManagedInsightRulesInput$;
2353
- exports.ListManagedInsightRulesOutput$ = ListManagedInsightRulesOutput$;
2354
- exports.ListMetricStreams$ = ListMetricStreams$;
2355
873
  exports.ListMetricStreamsCommand = ListMetricStreamsCommand;
2356
- exports.ListMetricStreamsInput$ = ListMetricStreamsInput$;
2357
- exports.ListMetricStreamsOutput$ = ListMetricStreamsOutput$;
2358
- exports.ListMetrics$ = ListMetrics$;
2359
874
  exports.ListMetricsCommand = ListMetricsCommand;
2360
- exports.ListMetricsInput$ = ListMetricsInput$;
2361
- exports.ListMetricsOutput$ = ListMetricsOutput$;
2362
- exports.ListTagsForResource$ = ListTagsForResource$;
2363
875
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2364
- exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
2365
- exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
2366
- exports.ManagedRule$ = ManagedRule$;
2367
- exports.ManagedRuleDescription$ = ManagedRuleDescription$;
2368
- exports.ManagedRuleState$ = ManagedRuleState$;
2369
- exports.MessageData$ = MessageData$;
2370
- exports.Metric$ = Metric$;
2371
- exports.MetricAlarm$ = MetricAlarm$;
2372
- exports.MetricCharacteristics$ = MetricCharacteristics$;
2373
- exports.MetricDataQuery$ = MetricDataQuery$;
2374
- exports.MetricDataResult$ = MetricDataResult$;
2375
- exports.MetricDatum$ = MetricDatum$;
2376
- exports.MetricMathAnomalyDetector$ = MetricMathAnomalyDetector$;
2377
- exports.MetricStat$ = MetricStat$;
2378
- exports.MetricStreamEntry$ = MetricStreamEntry$;
2379
- exports.MetricStreamFilter$ = MetricStreamFilter$;
2380
876
  exports.MetricStreamOutputFormat = MetricStreamOutputFormat;
2381
- exports.MetricStreamStatisticsConfiguration$ = MetricStreamStatisticsConfiguration$;
2382
- exports.MetricStreamStatisticsMetric$ = MetricStreamStatisticsMetric$;
2383
- exports.MissingRequiredParameterException = MissingRequiredParameterException;
2384
- exports.MissingRequiredParameterException$ = MissingRequiredParameterException$;
2385
- exports.PartialFailure$ = PartialFailure$;
2386
- exports.PutAnomalyDetector$ = PutAnomalyDetector$;
2387
877
  exports.PutAnomalyDetectorCommand = PutAnomalyDetectorCommand;
2388
- exports.PutAnomalyDetectorInput$ = PutAnomalyDetectorInput$;
2389
- exports.PutAnomalyDetectorOutput$ = PutAnomalyDetectorOutput$;
2390
- exports.PutCompositeAlarm$ = PutCompositeAlarm$;
2391
878
  exports.PutCompositeAlarmCommand = PutCompositeAlarmCommand;
2392
- exports.PutCompositeAlarmInput$ = PutCompositeAlarmInput$;
2393
- exports.PutDashboard$ = PutDashboard$;
2394
879
  exports.PutDashboardCommand = PutDashboardCommand;
2395
- exports.PutDashboardInput$ = PutDashboardInput$;
2396
- exports.PutDashboardOutput$ = PutDashboardOutput$;
2397
- exports.PutInsightRule$ = PutInsightRule$;
2398
880
  exports.PutInsightRuleCommand = PutInsightRuleCommand;
2399
- exports.PutInsightRuleInput$ = PutInsightRuleInput$;
2400
- exports.PutInsightRuleOutput$ = PutInsightRuleOutput$;
2401
- exports.PutManagedInsightRules$ = PutManagedInsightRules$;
2402
881
  exports.PutManagedInsightRulesCommand = PutManagedInsightRulesCommand;
2403
- exports.PutManagedInsightRulesInput$ = PutManagedInsightRulesInput$;
2404
- exports.PutManagedInsightRulesOutput$ = PutManagedInsightRulesOutput$;
2405
- exports.PutMetricAlarm$ = PutMetricAlarm$;
2406
882
  exports.PutMetricAlarmCommand = PutMetricAlarmCommand;
2407
- exports.PutMetricAlarmInput$ = PutMetricAlarmInput$;
2408
- exports.PutMetricData$ = PutMetricData$;
2409
883
  exports.PutMetricDataCommand = PutMetricDataCommand;
2410
- exports.PutMetricDataInput$ = PutMetricDataInput$;
2411
- exports.PutMetricStream$ = PutMetricStream$;
2412
884
  exports.PutMetricStreamCommand = PutMetricStreamCommand;
2413
- exports.PutMetricStreamInput$ = PutMetricStreamInput$;
2414
- exports.PutMetricStreamOutput$ = PutMetricStreamOutput$;
2415
- exports.Range$ = Range$;
2416
885
  exports.RecentlyActive = RecentlyActive;
2417
- exports.ResourceNotFound = ResourceNotFound;
2418
- exports.ResourceNotFound$ = ResourceNotFound$;
2419
- exports.ResourceNotFoundException = ResourceNotFoundException;
2420
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2421
886
  exports.ScanBy = ScanBy;
2422
- exports.SetAlarmState$ = SetAlarmState$;
2423
887
  exports.SetAlarmStateCommand = SetAlarmStateCommand;
2424
- exports.SetAlarmStateInput$ = SetAlarmStateInput$;
2425
- exports.SingleMetricAnomalyDetector$ = SingleMetricAnomalyDetector$;
2426
888
  exports.StandardUnit = StandardUnit;
2427
- exports.StartMetricStreams$ = StartMetricStreams$;
2428
889
  exports.StartMetricStreamsCommand = StartMetricStreamsCommand;
2429
- exports.StartMetricStreamsInput$ = StartMetricStreamsInput$;
2430
- exports.StartMetricStreamsOutput$ = StartMetricStreamsOutput$;
2431
890
  exports.StateValue = StateValue;
2432
891
  exports.Statistic = Statistic;
2433
- exports.StatisticSet$ = StatisticSet$;
2434
892
  exports.StatusCode = StatusCode;
2435
- exports.StopMetricStreams$ = StopMetricStreams$;
2436
893
  exports.StopMetricStreamsCommand = StopMetricStreamsCommand;
2437
- exports.StopMetricStreamsInput$ = StopMetricStreamsInput$;
2438
- exports.StopMetricStreamsOutput$ = StopMetricStreamsOutput$;
2439
- exports.Tag$ = Tag$;
2440
- exports.TagResource$ = TagResource$;
2441
894
  exports.TagResourceCommand = TagResourceCommand;
2442
- exports.TagResourceInput$ = TagResourceInput$;
2443
- exports.TagResourceOutput$ = TagResourceOutput$;
2444
- exports.UntagResource$ = UntagResource$;
2445
895
  exports.UntagResourceCommand = UntagResourceCommand;
2446
- exports.UntagResourceInput$ = UntagResourceInput$;
2447
- exports.UntagResourceOutput$ = UntagResourceOutput$;
2448
896
  exports.paginateDescribeAlarmHistory = paginateDescribeAlarmHistory;
2449
897
  exports.paginateDescribeAlarms = paginateDescribeAlarms;
2450
898
  exports.paginateDescribeAnomalyDetectors = paginateDescribeAnomalyDetectors;
@@ -2458,3 +906,15 @@ exports.waitForAlarmExists = waitForAlarmExists;
2458
906
  exports.waitForCompositeAlarmExists = waitForCompositeAlarmExists;
2459
907
  exports.waitUntilAlarmExists = waitUntilAlarmExists;
2460
908
  exports.waitUntilCompositeAlarmExists = waitUntilCompositeAlarmExists;
909
+ Object.keys(schemas_0).forEach(function (k) {
910
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
911
+ enumerable: true,
912
+ get: function () { return schemas_0[k]; }
913
+ });
914
+ });
915
+ Object.keys(errors).forEach(function (k) {
916
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
917
+ enumerable: true,
918
+ get: function () { return errors[k]; }
919
+ });
920
+ });