@aws-sdk/client-cloudtrail 3.1075.0 → 3.1076.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
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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 { resolveHttpAuthSchemeConfig, defaultCloudTrailHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AddTags$, CancelQuery$, CreateChannel$, CreateDashboard$, CreateEventDataStore$, CreateTrail$, DeleteChannel$, DeleteDashboard$, DeleteEventDataStore$, DeleteResourcePolicy$, DeleteTrail$, DeregisterOrganizationDelegatedAdmin$, DescribeQuery$, DescribeTrails$, DisableFederation$, EnableFederation$, GenerateQuery$, GetChannel$, GetDashboard$, GetEventConfiguration$, GetEventDataStore$, GetEventSelectors$, GetImport$, GetInsightSelectors$, GetQueryResults$, GetResourcePolicy$, GetTrail$, GetTrailStatus$, ListChannels$, ListDashboards$, ListEventDataStores$, ListImportFailures$, ListImports$, ListInsightsData$, ListInsightsMetricData$, ListPublicKeys$, ListQueries$, ListTags$, ListTrails$, LookupEvents$, PutEventConfiguration$, PutEventSelectors$, PutInsightSelectors$, PutResourcePolicy$, RegisterOrganizationDelegatedAdmin$, RemoveTags$, RestoreEventDataStore$, SearchSampleQueries$, StartDashboardRefresh$, StartEventDataStoreIngestion$, StartImport$, StartLogging$, StartQuery$, StopEventDataStoreIngestion$, StopImport$, StopLogging$, UpdateChannel$, UpdateDashboard$, UpdateEventDataStore$, UpdateTrail$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { CloudTrailServiceException } = require("./models/CloudTrailServiceException");
18
- exports.CloudTrailServiceException = CloudTrailServiceException;
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, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultCloudTrailHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "cloudtrail",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultCloudTrailHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,3417 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const m = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = "stringEquals", h = { [m]: "Endpoint" }, i = { [m]: d }, j = { [m]: "Region" }, k = {}, l = [j];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [h]],
79
+ [c, l],
80
+ ["aws.partition", l, d],
81
+ [e, [{ [m]: "UseFIPS" }, b]],
82
+ [e, [{ [m]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [i, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [i, "supportsFIPS"] }, b]],
85
+ [g, [j, "us-gov-east-1"]],
86
+ [g, [j, "us-gov-west-1"]]
87
+ ],
88
+ results: [
89
+ [a],
90
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
91
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
92
+ [h, k],
93
+ ["https://cloudtrail-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
94
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
95
+ ["https://cloudtrail.us-gov-east-1.amazonaws.com", k],
96
+ ["https://cloudtrail.us-gov-west-1.amazonaws.com", k],
97
+ ["https://cloudtrail-fips.{Region}.{PartitionResult#dnsSuffix}", k],
98
+ [a, "FIPS is enabled but this partition does not support FIPS"],
99
+ ["https://cloudtrail.{Region}.{PartitionResult#dualStackDnsSuffix}", k],
100
+ [a, "DualStack is enabled but this partition does not support DualStack"],
101
+ ["https://cloudtrail.{Region}.{PartitionResult#dnsSuffix}", k],
102
+ [a, "Invalid Configuration: Missing Region"]
103
+ ]
104
+ };
105
+ const root = 2;
106
+ const r = 100_000_000;
107
+ const nodes = new Int32Array([
108
+ -1, 1, -1,
109
+ 0, 14, 3,
110
+ 1, 4, r + 13,
111
+ 2, 5, r + 13,
112
+ 3, 8, 6,
113
+ 4, 7, r + 12,
114
+ 5, r + 10, r + 11,
115
+ 4, 12, 9,
116
+ 6, 10, r + 9,
117
+ 7, r + 6, 11,
118
+ 8, r + 7, r + 8,
119
+ 5, 13, r + 5,
120
+ 6, r + 4, r + 5,
121
+ 3, r + 1, 15,
122
+ 4, r + 2, r + 3,
123
+ ]);
124
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
125
+
126
+ const cache = new EndpointCache({
127
+ size: 50,
128
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
129
+ });
130
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
131
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
132
+ endpointParams: endpointParams,
133
+ logger: context.logger,
134
+ }));
135
+ };
136
+ customEndpointFunctions.aws = awsEndpointFunctions;
137
+
138
+ class CloudTrailServiceException extends ServiceException {
139
+ constructor(options) {
140
+ super(options);
141
+ Object.setPrototypeOf(this, CloudTrailServiceException.prototype);
142
+ }
143
+ }
144
+
145
+ class AccessDeniedException extends CloudTrailServiceException {
146
+ name = "AccessDeniedException";
147
+ $fault = "client";
148
+ Message;
149
+ constructor(opts) {
150
+ super({
151
+ name: "AccessDeniedException",
152
+ $fault: "client",
153
+ ...opts,
154
+ });
155
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
156
+ this.Message = opts.Message;
157
+ }
158
+ }
159
+ class AccountHasOngoingImportException extends CloudTrailServiceException {
160
+ name = "AccountHasOngoingImportException";
161
+ $fault = "client";
162
+ Message;
163
+ constructor(opts) {
164
+ super({
165
+ name: "AccountHasOngoingImportException",
166
+ $fault: "client",
167
+ ...opts,
168
+ });
169
+ Object.setPrototypeOf(this, AccountHasOngoingImportException.prototype);
170
+ this.Message = opts.Message;
171
+ }
172
+ }
173
+ class AccountNotFoundException extends CloudTrailServiceException {
174
+ name = "AccountNotFoundException";
175
+ $fault = "client";
176
+ Message;
177
+ constructor(opts) {
178
+ super({
179
+ name: "AccountNotFoundException",
180
+ $fault: "client",
181
+ ...opts,
182
+ });
183
+ Object.setPrototypeOf(this, AccountNotFoundException.prototype);
184
+ this.Message = opts.Message;
185
+ }
186
+ }
187
+ class AccountNotRegisteredException extends CloudTrailServiceException {
188
+ name = "AccountNotRegisteredException";
189
+ $fault = "client";
190
+ Message;
191
+ constructor(opts) {
192
+ super({
193
+ name: "AccountNotRegisteredException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, AccountNotRegisteredException.prototype);
198
+ this.Message = opts.Message;
199
+ }
200
+ }
201
+ class AccountRegisteredException extends CloudTrailServiceException {
202
+ name = "AccountRegisteredException";
203
+ $fault = "client";
204
+ Message;
205
+ constructor(opts) {
206
+ super({
207
+ name: "AccountRegisteredException",
208
+ $fault: "client",
209
+ ...opts,
210
+ });
211
+ Object.setPrototypeOf(this, AccountRegisteredException.prototype);
212
+ this.Message = opts.Message;
213
+ }
214
+ }
215
+ class ChannelARNInvalidException extends CloudTrailServiceException {
216
+ name = "ChannelARNInvalidException";
217
+ $fault = "client";
218
+ Message;
219
+ constructor(opts) {
220
+ super({
221
+ name: "ChannelARNInvalidException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ Object.setPrototypeOf(this, ChannelARNInvalidException.prototype);
226
+ this.Message = opts.Message;
227
+ }
228
+ }
229
+ class ChannelNotFoundException extends CloudTrailServiceException {
230
+ name = "ChannelNotFoundException";
231
+ $fault = "client";
232
+ Message;
233
+ constructor(opts) {
234
+ super({
235
+ name: "ChannelNotFoundException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ Object.setPrototypeOf(this, ChannelNotFoundException.prototype);
240
+ this.Message = opts.Message;
241
+ }
242
+ }
243
+ class CloudTrailARNInvalidException extends CloudTrailServiceException {
244
+ name = "CloudTrailARNInvalidException";
245
+ $fault = "client";
246
+ Message;
247
+ constructor(opts) {
248
+ super({
249
+ name: "CloudTrailARNInvalidException",
250
+ $fault: "client",
251
+ ...opts,
252
+ });
253
+ Object.setPrototypeOf(this, CloudTrailARNInvalidException.prototype);
254
+ this.Message = opts.Message;
255
+ }
256
+ }
257
+ class ConflictException extends CloudTrailServiceException {
258
+ name = "ConflictException";
259
+ $fault = "client";
260
+ Message;
261
+ constructor(opts) {
262
+ super({
263
+ name: "ConflictException",
264
+ $fault: "client",
265
+ ...opts,
266
+ });
267
+ Object.setPrototypeOf(this, ConflictException.prototype);
268
+ this.Message = opts.Message;
269
+ }
270
+ }
271
+ class EventDataStoreARNInvalidException extends CloudTrailServiceException {
272
+ name = "EventDataStoreARNInvalidException";
273
+ $fault = "client";
274
+ Message;
275
+ constructor(opts) {
276
+ super({
277
+ name: "EventDataStoreARNInvalidException",
278
+ $fault: "client",
279
+ ...opts,
280
+ });
281
+ Object.setPrototypeOf(this, EventDataStoreARNInvalidException.prototype);
282
+ this.Message = opts.Message;
283
+ }
284
+ }
285
+ class EventDataStoreNotFoundException extends CloudTrailServiceException {
286
+ name = "EventDataStoreNotFoundException";
287
+ $fault = "client";
288
+ Message;
289
+ constructor(opts) {
290
+ super({
291
+ name: "EventDataStoreNotFoundException",
292
+ $fault: "client",
293
+ ...opts,
294
+ });
295
+ Object.setPrototypeOf(this, EventDataStoreNotFoundException.prototype);
296
+ this.Message = opts.Message;
297
+ }
298
+ }
299
+ class InactiveEventDataStoreException extends CloudTrailServiceException {
300
+ name = "InactiveEventDataStoreException";
301
+ $fault = "client";
302
+ Message;
303
+ constructor(opts) {
304
+ super({
305
+ name: "InactiveEventDataStoreException",
306
+ $fault: "client",
307
+ ...opts,
308
+ });
309
+ Object.setPrototypeOf(this, InactiveEventDataStoreException.prototype);
310
+ this.Message = opts.Message;
311
+ }
312
+ }
313
+ class InvalidTagParameterException extends CloudTrailServiceException {
314
+ name = "InvalidTagParameterException";
315
+ $fault = "client";
316
+ Message;
317
+ constructor(opts) {
318
+ super({
319
+ name: "InvalidTagParameterException",
320
+ $fault: "client",
321
+ ...opts,
322
+ });
323
+ Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
324
+ this.Message = opts.Message;
325
+ }
326
+ }
327
+ class InvalidTrailNameException extends CloudTrailServiceException {
328
+ name = "InvalidTrailNameException";
329
+ $fault = "client";
330
+ Message;
331
+ constructor(opts) {
332
+ super({
333
+ name: "InvalidTrailNameException",
334
+ $fault: "client",
335
+ ...opts,
336
+ });
337
+ Object.setPrototypeOf(this, InvalidTrailNameException.prototype);
338
+ this.Message = opts.Message;
339
+ }
340
+ }
341
+ class NoManagementAccountSLRExistsException extends CloudTrailServiceException {
342
+ name = "NoManagementAccountSLRExistsException";
343
+ $fault = "client";
344
+ Message;
345
+ constructor(opts) {
346
+ super({
347
+ name: "NoManagementAccountSLRExistsException",
348
+ $fault: "client",
349
+ ...opts,
350
+ });
351
+ Object.setPrototypeOf(this, NoManagementAccountSLRExistsException.prototype);
352
+ this.Message = opts.Message;
353
+ }
354
+ }
355
+ class NotOrganizationMasterAccountException extends CloudTrailServiceException {
356
+ name = "NotOrganizationMasterAccountException";
357
+ $fault = "client";
358
+ Message;
359
+ constructor(opts) {
360
+ super({
361
+ name: "NotOrganizationMasterAccountException",
362
+ $fault: "client",
363
+ ...opts,
364
+ });
365
+ Object.setPrototypeOf(this, NotOrganizationMasterAccountException.prototype);
366
+ this.Message = opts.Message;
367
+ }
368
+ }
369
+ class OperationNotPermittedException extends CloudTrailServiceException {
370
+ name = "OperationNotPermittedException";
371
+ $fault = "client";
372
+ Message;
373
+ constructor(opts) {
374
+ super({
375
+ name: "OperationNotPermittedException",
376
+ $fault: "client",
377
+ ...opts,
378
+ });
379
+ Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
380
+ this.Message = opts.Message;
381
+ }
382
+ }
383
+ class ResourceNotFoundException extends CloudTrailServiceException {
384
+ name = "ResourceNotFoundException";
385
+ $fault = "client";
386
+ Message;
387
+ constructor(opts) {
388
+ super({
389
+ name: "ResourceNotFoundException",
390
+ $fault: "client",
391
+ ...opts,
392
+ });
393
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
394
+ this.Message = opts.Message;
395
+ }
396
+ }
397
+ class ResourceTypeNotSupportedException extends CloudTrailServiceException {
398
+ name = "ResourceTypeNotSupportedException";
399
+ $fault = "client";
400
+ Message;
401
+ constructor(opts) {
402
+ super({
403
+ name: "ResourceTypeNotSupportedException",
404
+ $fault: "client",
405
+ ...opts,
406
+ });
407
+ Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
408
+ this.Message = opts.Message;
409
+ }
410
+ }
411
+ class TagsLimitExceededException extends CloudTrailServiceException {
412
+ name = "TagsLimitExceededException";
413
+ $fault = "client";
414
+ Message;
415
+ constructor(opts) {
416
+ super({
417
+ name: "TagsLimitExceededException",
418
+ $fault: "client",
419
+ ...opts,
420
+ });
421
+ Object.setPrototypeOf(this, TagsLimitExceededException.prototype);
422
+ this.Message = opts.Message;
423
+ }
424
+ }
425
+ class UnsupportedOperationException extends CloudTrailServiceException {
426
+ name = "UnsupportedOperationException";
427
+ $fault = "client";
428
+ Message;
429
+ constructor(opts) {
430
+ super({
431
+ name: "UnsupportedOperationException",
432
+ $fault: "client",
433
+ ...opts,
434
+ });
435
+ Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
436
+ this.Message = opts.Message;
437
+ }
438
+ }
439
+ class InactiveQueryException extends CloudTrailServiceException {
440
+ name = "InactiveQueryException";
441
+ $fault = "client";
442
+ Message;
443
+ constructor(opts) {
444
+ super({
445
+ name: "InactiveQueryException",
446
+ $fault: "client",
447
+ ...opts,
448
+ });
449
+ Object.setPrototypeOf(this, InactiveQueryException.prototype);
450
+ this.Message = opts.Message;
451
+ }
452
+ }
453
+ class InvalidParameterException extends CloudTrailServiceException {
454
+ name = "InvalidParameterException";
455
+ $fault = "client";
456
+ Message;
457
+ constructor(opts) {
458
+ super({
459
+ name: "InvalidParameterException",
460
+ $fault: "client",
461
+ ...opts,
462
+ });
463
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
464
+ this.Message = opts.Message;
465
+ }
466
+ }
467
+ class QueryIdNotFoundException extends CloudTrailServiceException {
468
+ name = "QueryIdNotFoundException";
469
+ $fault = "client";
470
+ Message;
471
+ constructor(opts) {
472
+ super({
473
+ name: "QueryIdNotFoundException",
474
+ $fault: "client",
475
+ ...opts,
476
+ });
477
+ Object.setPrototypeOf(this, QueryIdNotFoundException.prototype);
478
+ this.Message = opts.Message;
479
+ }
480
+ }
481
+ class CannotDelegateManagementAccountException extends CloudTrailServiceException {
482
+ name = "CannotDelegateManagementAccountException";
483
+ $fault = "client";
484
+ Message;
485
+ constructor(opts) {
486
+ super({
487
+ name: "CannotDelegateManagementAccountException",
488
+ $fault: "client",
489
+ ...opts,
490
+ });
491
+ Object.setPrototypeOf(this, CannotDelegateManagementAccountException.prototype);
492
+ this.Message = opts.Message;
493
+ }
494
+ }
495
+ class ChannelAlreadyExistsException extends CloudTrailServiceException {
496
+ name = "ChannelAlreadyExistsException";
497
+ $fault = "client";
498
+ Message;
499
+ constructor(opts) {
500
+ super({
501
+ name: "ChannelAlreadyExistsException",
502
+ $fault: "client",
503
+ ...opts,
504
+ });
505
+ Object.setPrototypeOf(this, ChannelAlreadyExistsException.prototype);
506
+ this.Message = opts.Message;
507
+ }
508
+ }
509
+ class ChannelExistsForEDSException extends CloudTrailServiceException {
510
+ name = "ChannelExistsForEDSException";
511
+ $fault = "client";
512
+ Message;
513
+ constructor(opts) {
514
+ super({
515
+ name: "ChannelExistsForEDSException",
516
+ $fault: "client",
517
+ ...opts,
518
+ });
519
+ Object.setPrototypeOf(this, ChannelExistsForEDSException.prototype);
520
+ this.Message = opts.Message;
521
+ }
522
+ }
523
+ class ChannelMaxLimitExceededException extends CloudTrailServiceException {
524
+ name = "ChannelMaxLimitExceededException";
525
+ $fault = "client";
526
+ Message;
527
+ constructor(opts) {
528
+ super({
529
+ name: "ChannelMaxLimitExceededException",
530
+ $fault: "client",
531
+ ...opts,
532
+ });
533
+ Object.setPrototypeOf(this, ChannelMaxLimitExceededException.prototype);
534
+ this.Message = opts.Message;
535
+ }
536
+ }
537
+ class InvalidEventDataStoreCategoryException extends CloudTrailServiceException {
538
+ name = "InvalidEventDataStoreCategoryException";
539
+ $fault = "client";
540
+ Message;
541
+ constructor(opts) {
542
+ super({
543
+ name: "InvalidEventDataStoreCategoryException",
544
+ $fault: "client",
545
+ ...opts,
546
+ });
547
+ Object.setPrototypeOf(this, InvalidEventDataStoreCategoryException.prototype);
548
+ this.Message = opts.Message;
549
+ }
550
+ }
551
+ class InvalidSourceException extends CloudTrailServiceException {
552
+ name = "InvalidSourceException";
553
+ $fault = "client";
554
+ Message;
555
+ constructor(opts) {
556
+ super({
557
+ name: "InvalidSourceException",
558
+ $fault: "client",
559
+ ...opts,
560
+ });
561
+ Object.setPrototypeOf(this, InvalidSourceException.prototype);
562
+ this.Message = opts.Message;
563
+ }
564
+ }
565
+ class InsufficientEncryptionPolicyException extends CloudTrailServiceException {
566
+ name = "InsufficientEncryptionPolicyException";
567
+ $fault = "client";
568
+ Message;
569
+ constructor(opts) {
570
+ super({
571
+ name: "InsufficientEncryptionPolicyException",
572
+ $fault: "client",
573
+ ...opts,
574
+ });
575
+ Object.setPrototypeOf(this, InsufficientEncryptionPolicyException.prototype);
576
+ this.Message = opts.Message;
577
+ }
578
+ }
579
+ class InvalidQueryStatementException extends CloudTrailServiceException {
580
+ name = "InvalidQueryStatementException";
581
+ $fault = "client";
582
+ Message;
583
+ constructor(opts) {
584
+ super({
585
+ name: "InvalidQueryStatementException",
586
+ $fault: "client",
587
+ ...opts,
588
+ });
589
+ Object.setPrototypeOf(this, InvalidQueryStatementException.prototype);
590
+ this.Message = opts.Message;
591
+ }
592
+ }
593
+ class ServiceQuotaExceededException extends CloudTrailServiceException {
594
+ name = "ServiceQuotaExceededException";
595
+ $fault = "client";
596
+ Message;
597
+ constructor(opts) {
598
+ super({
599
+ name: "ServiceQuotaExceededException",
600
+ $fault: "client",
601
+ ...opts,
602
+ });
603
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
604
+ this.Message = opts.Message;
605
+ }
606
+ }
607
+ class CloudTrailAccessNotEnabledException extends CloudTrailServiceException {
608
+ name = "CloudTrailAccessNotEnabledException";
609
+ $fault = "client";
610
+ Message;
611
+ constructor(opts) {
612
+ super({
613
+ name: "CloudTrailAccessNotEnabledException",
614
+ $fault: "client",
615
+ ...opts,
616
+ });
617
+ Object.setPrototypeOf(this, CloudTrailAccessNotEnabledException.prototype);
618
+ this.Message = opts.Message;
619
+ }
620
+ }
621
+ class EventDataStoreAlreadyExistsException extends CloudTrailServiceException {
622
+ name = "EventDataStoreAlreadyExistsException";
623
+ $fault = "client";
624
+ Message;
625
+ constructor(opts) {
626
+ super({
627
+ name: "EventDataStoreAlreadyExistsException",
628
+ $fault: "client",
629
+ ...opts,
630
+ });
631
+ Object.setPrototypeOf(this, EventDataStoreAlreadyExistsException.prototype);
632
+ this.Message = opts.Message;
633
+ }
634
+ }
635
+ class EventDataStoreMaxLimitExceededException extends CloudTrailServiceException {
636
+ name = "EventDataStoreMaxLimitExceededException";
637
+ $fault = "client";
638
+ Message;
639
+ constructor(opts) {
640
+ super({
641
+ name: "EventDataStoreMaxLimitExceededException",
642
+ $fault: "client",
643
+ ...opts,
644
+ });
645
+ Object.setPrototypeOf(this, EventDataStoreMaxLimitExceededException.prototype);
646
+ this.Message = opts.Message;
647
+ }
648
+ }
649
+ class InsufficientDependencyServiceAccessPermissionException extends CloudTrailServiceException {
650
+ name = "InsufficientDependencyServiceAccessPermissionException";
651
+ $fault = "client";
652
+ Message;
653
+ constructor(opts) {
654
+ super({
655
+ name: "InsufficientDependencyServiceAccessPermissionException",
656
+ $fault: "client",
657
+ ...opts,
658
+ });
659
+ Object.setPrototypeOf(this, InsufficientDependencyServiceAccessPermissionException.prototype);
660
+ this.Message = opts.Message;
661
+ }
662
+ }
663
+ class InvalidEventSelectorsException extends CloudTrailServiceException {
664
+ name = "InvalidEventSelectorsException";
665
+ $fault = "client";
666
+ Message;
667
+ constructor(opts) {
668
+ super({
669
+ name: "InvalidEventSelectorsException",
670
+ $fault: "client",
671
+ ...opts,
672
+ });
673
+ Object.setPrototypeOf(this, InvalidEventSelectorsException.prototype);
674
+ this.Message = opts.Message;
675
+ }
676
+ }
677
+ class InvalidKmsKeyIdException extends CloudTrailServiceException {
678
+ name = "InvalidKmsKeyIdException";
679
+ $fault = "client";
680
+ Message;
681
+ constructor(opts) {
682
+ super({
683
+ name: "InvalidKmsKeyIdException",
684
+ $fault: "client",
685
+ ...opts,
686
+ });
687
+ Object.setPrototypeOf(this, InvalidKmsKeyIdException.prototype);
688
+ this.Message = opts.Message;
689
+ }
690
+ }
691
+ class KmsException extends CloudTrailServiceException {
692
+ name = "KmsException";
693
+ $fault = "client";
694
+ Message;
695
+ constructor(opts) {
696
+ super({
697
+ name: "KmsException",
698
+ $fault: "client",
699
+ ...opts,
700
+ });
701
+ Object.setPrototypeOf(this, KmsException.prototype);
702
+ this.Message = opts.Message;
703
+ }
704
+ }
705
+ class KmsKeyNotFoundException extends CloudTrailServiceException {
706
+ name = "KmsKeyNotFoundException";
707
+ $fault = "client";
708
+ Message;
709
+ constructor(opts) {
710
+ super({
711
+ name: "KmsKeyNotFoundException",
712
+ $fault: "client",
713
+ ...opts,
714
+ });
715
+ Object.setPrototypeOf(this, KmsKeyNotFoundException.prototype);
716
+ this.Message = opts.Message;
717
+ }
718
+ }
719
+ class OrganizationNotInAllFeaturesModeException extends CloudTrailServiceException {
720
+ name = "OrganizationNotInAllFeaturesModeException";
721
+ $fault = "client";
722
+ Message;
723
+ constructor(opts) {
724
+ super({
725
+ name: "OrganizationNotInAllFeaturesModeException",
726
+ $fault: "client",
727
+ ...opts,
728
+ });
729
+ Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
730
+ this.Message = opts.Message;
731
+ }
732
+ }
733
+ class OrganizationsNotInUseException extends CloudTrailServiceException {
734
+ name = "OrganizationsNotInUseException";
735
+ $fault = "client";
736
+ Message;
737
+ constructor(opts) {
738
+ super({
739
+ name: "OrganizationsNotInUseException",
740
+ $fault: "client",
741
+ ...opts,
742
+ });
743
+ Object.setPrototypeOf(this, OrganizationsNotInUseException.prototype);
744
+ this.Message = opts.Message;
745
+ }
746
+ }
747
+ class ThrottlingException extends CloudTrailServiceException {
748
+ name = "ThrottlingException";
749
+ $fault = "client";
750
+ Message;
751
+ constructor(opts) {
752
+ super({
753
+ name: "ThrottlingException",
754
+ $fault: "client",
755
+ ...opts,
756
+ });
757
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
758
+ this.Message = opts.Message;
759
+ }
760
+ }
761
+ class CloudTrailInvalidClientTokenIdException extends CloudTrailServiceException {
762
+ name = "CloudTrailInvalidClientTokenIdException";
763
+ $fault = "client";
764
+ Message;
765
+ constructor(opts) {
766
+ super({
767
+ name: "CloudTrailInvalidClientTokenIdException",
768
+ $fault: "client",
769
+ ...opts,
770
+ });
771
+ Object.setPrototypeOf(this, CloudTrailInvalidClientTokenIdException.prototype);
772
+ this.Message = opts.Message;
773
+ }
774
+ }
775
+ class CloudWatchLogsDeliveryUnavailableException extends CloudTrailServiceException {
776
+ name = "CloudWatchLogsDeliveryUnavailableException";
777
+ $fault = "client";
778
+ Message;
779
+ constructor(opts) {
780
+ super({
781
+ name: "CloudWatchLogsDeliveryUnavailableException",
782
+ $fault: "client",
783
+ ...opts,
784
+ });
785
+ Object.setPrototypeOf(this, CloudWatchLogsDeliveryUnavailableException.prototype);
786
+ this.Message = opts.Message;
787
+ }
788
+ }
789
+ class InsufficientS3BucketPolicyException extends CloudTrailServiceException {
790
+ name = "InsufficientS3BucketPolicyException";
791
+ $fault = "client";
792
+ Message;
793
+ constructor(opts) {
794
+ super({
795
+ name: "InsufficientS3BucketPolicyException",
796
+ $fault: "client",
797
+ ...opts,
798
+ });
799
+ Object.setPrototypeOf(this, InsufficientS3BucketPolicyException.prototype);
800
+ this.Message = opts.Message;
801
+ }
802
+ }
803
+ class InsufficientSnsTopicPolicyException extends CloudTrailServiceException {
804
+ name = "InsufficientSnsTopicPolicyException";
805
+ $fault = "client";
806
+ Message;
807
+ constructor(opts) {
808
+ super({
809
+ name: "InsufficientSnsTopicPolicyException",
810
+ $fault: "client",
811
+ ...opts,
812
+ });
813
+ Object.setPrototypeOf(this, InsufficientSnsTopicPolicyException.prototype);
814
+ this.Message = opts.Message;
815
+ }
816
+ }
817
+ class InvalidCloudWatchLogsLogGroupArnException extends CloudTrailServiceException {
818
+ name = "InvalidCloudWatchLogsLogGroupArnException";
819
+ $fault = "client";
820
+ Message;
821
+ constructor(opts) {
822
+ super({
823
+ name: "InvalidCloudWatchLogsLogGroupArnException",
824
+ $fault: "client",
825
+ ...opts,
826
+ });
827
+ Object.setPrototypeOf(this, InvalidCloudWatchLogsLogGroupArnException.prototype);
828
+ this.Message = opts.Message;
829
+ }
830
+ }
831
+ class InvalidCloudWatchLogsRoleArnException extends CloudTrailServiceException {
832
+ name = "InvalidCloudWatchLogsRoleArnException";
833
+ $fault = "client";
834
+ Message;
835
+ constructor(opts) {
836
+ super({
837
+ name: "InvalidCloudWatchLogsRoleArnException",
838
+ $fault: "client",
839
+ ...opts,
840
+ });
841
+ Object.setPrototypeOf(this, InvalidCloudWatchLogsRoleArnException.prototype);
842
+ this.Message = opts.Message;
843
+ }
844
+ }
845
+ class InvalidParameterCombinationException extends CloudTrailServiceException {
846
+ name = "InvalidParameterCombinationException";
847
+ $fault = "client";
848
+ Message;
849
+ constructor(opts) {
850
+ super({
851
+ name: "InvalidParameterCombinationException",
852
+ $fault: "client",
853
+ ...opts,
854
+ });
855
+ Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
856
+ this.Message = opts.Message;
857
+ }
858
+ }
859
+ class InvalidS3BucketNameException extends CloudTrailServiceException {
860
+ name = "InvalidS3BucketNameException";
861
+ $fault = "client";
862
+ Message;
863
+ constructor(opts) {
864
+ super({
865
+ name: "InvalidS3BucketNameException",
866
+ $fault: "client",
867
+ ...opts,
868
+ });
869
+ Object.setPrototypeOf(this, InvalidS3BucketNameException.prototype);
870
+ this.Message = opts.Message;
871
+ }
872
+ }
873
+ class InvalidS3PrefixException extends CloudTrailServiceException {
874
+ name = "InvalidS3PrefixException";
875
+ $fault = "client";
876
+ Message;
877
+ constructor(opts) {
878
+ super({
879
+ name: "InvalidS3PrefixException",
880
+ $fault: "client",
881
+ ...opts,
882
+ });
883
+ Object.setPrototypeOf(this, InvalidS3PrefixException.prototype);
884
+ this.Message = opts.Message;
885
+ }
886
+ }
887
+ class InvalidSnsTopicNameException extends CloudTrailServiceException {
888
+ name = "InvalidSnsTopicNameException";
889
+ $fault = "client";
890
+ Message;
891
+ constructor(opts) {
892
+ super({
893
+ name: "InvalidSnsTopicNameException",
894
+ $fault: "client",
895
+ ...opts,
896
+ });
897
+ Object.setPrototypeOf(this, InvalidSnsTopicNameException.prototype);
898
+ this.Message = opts.Message;
899
+ }
900
+ }
901
+ class KmsKeyDisabledException extends CloudTrailServiceException {
902
+ name = "KmsKeyDisabledException";
903
+ $fault = "client";
904
+ Message;
905
+ constructor(opts) {
906
+ super({
907
+ name: "KmsKeyDisabledException",
908
+ $fault: "client",
909
+ ...opts,
910
+ });
911
+ Object.setPrototypeOf(this, KmsKeyDisabledException.prototype);
912
+ this.Message = opts.Message;
913
+ }
914
+ }
915
+ class MaximumNumberOfTrailsExceededException extends CloudTrailServiceException {
916
+ name = "MaximumNumberOfTrailsExceededException";
917
+ $fault = "client";
918
+ Message;
919
+ constructor(opts) {
920
+ super({
921
+ name: "MaximumNumberOfTrailsExceededException",
922
+ $fault: "client",
923
+ ...opts,
924
+ });
925
+ Object.setPrototypeOf(this, MaximumNumberOfTrailsExceededException.prototype);
926
+ this.Message = opts.Message;
927
+ }
928
+ }
929
+ class S3BucketDoesNotExistException extends CloudTrailServiceException {
930
+ name = "S3BucketDoesNotExistException";
931
+ $fault = "client";
932
+ Message;
933
+ constructor(opts) {
934
+ super({
935
+ name: "S3BucketDoesNotExistException",
936
+ $fault: "client",
937
+ ...opts,
938
+ });
939
+ Object.setPrototypeOf(this, S3BucketDoesNotExistException.prototype);
940
+ this.Message = opts.Message;
941
+ }
942
+ }
943
+ class TrailAlreadyExistsException extends CloudTrailServiceException {
944
+ name = "TrailAlreadyExistsException";
945
+ $fault = "client";
946
+ Message;
947
+ constructor(opts) {
948
+ super({
949
+ name: "TrailAlreadyExistsException",
950
+ $fault: "client",
951
+ ...opts,
952
+ });
953
+ Object.setPrototypeOf(this, TrailAlreadyExistsException.prototype);
954
+ this.Message = opts.Message;
955
+ }
956
+ }
957
+ class TrailNotProvidedException extends CloudTrailServiceException {
958
+ name = "TrailNotProvidedException";
959
+ $fault = "client";
960
+ Message;
961
+ constructor(opts) {
962
+ super({
963
+ name: "TrailNotProvidedException",
964
+ $fault: "client",
965
+ ...opts,
966
+ });
967
+ Object.setPrototypeOf(this, TrailNotProvidedException.prototype);
968
+ this.Message = opts.Message;
969
+ }
970
+ }
971
+ class EventDataStoreFederationEnabledException extends CloudTrailServiceException {
972
+ name = "EventDataStoreFederationEnabledException";
973
+ $fault = "client";
974
+ Message;
975
+ constructor(opts) {
976
+ super({
977
+ name: "EventDataStoreFederationEnabledException",
978
+ $fault: "client",
979
+ ...opts,
980
+ });
981
+ Object.setPrototypeOf(this, EventDataStoreFederationEnabledException.prototype);
982
+ this.Message = opts.Message;
983
+ }
984
+ }
985
+ class EventDataStoreHasOngoingImportException extends CloudTrailServiceException {
986
+ name = "EventDataStoreHasOngoingImportException";
987
+ $fault = "client";
988
+ Message;
989
+ constructor(opts) {
990
+ super({
991
+ name: "EventDataStoreHasOngoingImportException",
992
+ $fault: "client",
993
+ ...opts,
994
+ });
995
+ Object.setPrototypeOf(this, EventDataStoreHasOngoingImportException.prototype);
996
+ this.Message = opts.Message;
997
+ }
998
+ }
999
+ class EventDataStoreTerminationProtectedException extends CloudTrailServiceException {
1000
+ name = "EventDataStoreTerminationProtectedException";
1001
+ $fault = "client";
1002
+ Message;
1003
+ constructor(opts) {
1004
+ super({
1005
+ name: "EventDataStoreTerminationProtectedException",
1006
+ $fault: "client",
1007
+ ...opts,
1008
+ });
1009
+ Object.setPrototypeOf(this, EventDataStoreTerminationProtectedException.prototype);
1010
+ this.Message = opts.Message;
1011
+ }
1012
+ }
1013
+ class ResourceARNNotValidException extends CloudTrailServiceException {
1014
+ name = "ResourceARNNotValidException";
1015
+ $fault = "client";
1016
+ Message;
1017
+ constructor(opts) {
1018
+ super({
1019
+ name: "ResourceARNNotValidException",
1020
+ $fault: "client",
1021
+ ...opts,
1022
+ });
1023
+ Object.setPrototypeOf(this, ResourceARNNotValidException.prototype);
1024
+ this.Message = opts.Message;
1025
+ }
1026
+ }
1027
+ class ResourcePolicyNotFoundException extends CloudTrailServiceException {
1028
+ name = "ResourcePolicyNotFoundException";
1029
+ $fault = "client";
1030
+ Message;
1031
+ constructor(opts) {
1032
+ super({
1033
+ name: "ResourcePolicyNotFoundException",
1034
+ $fault: "client",
1035
+ ...opts,
1036
+ });
1037
+ Object.setPrototypeOf(this, ResourcePolicyNotFoundException.prototype);
1038
+ this.Message = opts.Message;
1039
+ }
1040
+ }
1041
+ class InvalidHomeRegionException extends CloudTrailServiceException {
1042
+ name = "InvalidHomeRegionException";
1043
+ $fault = "client";
1044
+ Message;
1045
+ constructor(opts) {
1046
+ super({
1047
+ name: "InvalidHomeRegionException",
1048
+ $fault: "client",
1049
+ ...opts,
1050
+ });
1051
+ Object.setPrototypeOf(this, InvalidHomeRegionException.prototype);
1052
+ this.Message = opts.Message;
1053
+ }
1054
+ }
1055
+ class TrailNotFoundException extends CloudTrailServiceException {
1056
+ name = "TrailNotFoundException";
1057
+ $fault = "client";
1058
+ Message;
1059
+ constructor(opts) {
1060
+ super({
1061
+ name: "TrailNotFoundException",
1062
+ $fault: "client",
1063
+ ...opts,
1064
+ });
1065
+ Object.setPrototypeOf(this, TrailNotFoundException.prototype);
1066
+ this.Message = opts.Message;
1067
+ }
1068
+ }
1069
+ class NotOrganizationManagementAccountException extends CloudTrailServiceException {
1070
+ name = "NotOrganizationManagementAccountException";
1071
+ $fault = "client";
1072
+ Message;
1073
+ constructor(opts) {
1074
+ super({
1075
+ name: "NotOrganizationManagementAccountException",
1076
+ $fault: "client",
1077
+ ...opts,
1078
+ });
1079
+ Object.setPrototypeOf(this, NotOrganizationManagementAccountException.prototype);
1080
+ this.Message = opts.Message;
1081
+ }
1082
+ }
1083
+ class ConcurrentModificationException extends CloudTrailServiceException {
1084
+ name = "ConcurrentModificationException";
1085
+ $fault = "client";
1086
+ Message;
1087
+ constructor(opts) {
1088
+ super({
1089
+ name: "ConcurrentModificationException",
1090
+ $fault: "client",
1091
+ ...opts,
1092
+ });
1093
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
1094
+ this.Message = opts.Message;
1095
+ }
1096
+ }
1097
+ class GenerateResponseException extends CloudTrailServiceException {
1098
+ name = "GenerateResponseException";
1099
+ $fault = "client";
1100
+ Message;
1101
+ constructor(opts) {
1102
+ super({
1103
+ name: "GenerateResponseException",
1104
+ $fault: "client",
1105
+ ...opts,
1106
+ });
1107
+ Object.setPrototypeOf(this, GenerateResponseException.prototype);
1108
+ this.Message = opts.Message;
1109
+ }
1110
+ }
1111
+ class InvalidEventDataStoreStatusException extends CloudTrailServiceException {
1112
+ name = "InvalidEventDataStoreStatusException";
1113
+ $fault = "client";
1114
+ Message;
1115
+ constructor(opts) {
1116
+ super({
1117
+ name: "InvalidEventDataStoreStatusException",
1118
+ $fault: "client",
1119
+ ...opts,
1120
+ });
1121
+ Object.setPrototypeOf(this, InvalidEventDataStoreStatusException.prototype);
1122
+ this.Message = opts.Message;
1123
+ }
1124
+ }
1125
+ class ImportNotFoundException extends CloudTrailServiceException {
1126
+ name = "ImportNotFoundException";
1127
+ $fault = "client";
1128
+ Message;
1129
+ constructor(opts) {
1130
+ super({
1131
+ name: "ImportNotFoundException",
1132
+ $fault: "client",
1133
+ ...opts,
1134
+ });
1135
+ Object.setPrototypeOf(this, ImportNotFoundException.prototype);
1136
+ this.Message = opts.Message;
1137
+ }
1138
+ }
1139
+ class InsightNotEnabledException extends CloudTrailServiceException {
1140
+ name = "InsightNotEnabledException";
1141
+ $fault = "client";
1142
+ Message;
1143
+ constructor(opts) {
1144
+ super({
1145
+ name: "InsightNotEnabledException",
1146
+ $fault: "client",
1147
+ ...opts,
1148
+ });
1149
+ Object.setPrototypeOf(this, InsightNotEnabledException.prototype);
1150
+ this.Message = opts.Message;
1151
+ }
1152
+ }
1153
+ class InvalidMaxResultsException extends CloudTrailServiceException {
1154
+ name = "InvalidMaxResultsException";
1155
+ $fault = "client";
1156
+ Message;
1157
+ constructor(opts) {
1158
+ super({
1159
+ name: "InvalidMaxResultsException",
1160
+ $fault: "client",
1161
+ ...opts,
1162
+ });
1163
+ Object.setPrototypeOf(this, InvalidMaxResultsException.prototype);
1164
+ this.Message = opts.Message;
1165
+ }
1166
+ }
1167
+ class InvalidNextTokenException extends CloudTrailServiceException {
1168
+ name = "InvalidNextTokenException";
1169
+ $fault = "client";
1170
+ Message;
1171
+ constructor(opts) {
1172
+ super({
1173
+ name: "InvalidNextTokenException",
1174
+ $fault: "client",
1175
+ ...opts,
1176
+ });
1177
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
1178
+ this.Message = opts.Message;
1179
+ }
1180
+ }
1181
+ class InvalidTimeRangeException extends CloudTrailServiceException {
1182
+ name = "InvalidTimeRangeException";
1183
+ $fault = "client";
1184
+ Message;
1185
+ constructor(opts) {
1186
+ super({
1187
+ name: "InvalidTimeRangeException",
1188
+ $fault: "client",
1189
+ ...opts,
1190
+ });
1191
+ Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
1192
+ this.Message = opts.Message;
1193
+ }
1194
+ }
1195
+ class InvalidTokenException extends CloudTrailServiceException {
1196
+ name = "InvalidTokenException";
1197
+ $fault = "client";
1198
+ Message;
1199
+ constructor(opts) {
1200
+ super({
1201
+ name: "InvalidTokenException",
1202
+ $fault: "client",
1203
+ ...opts,
1204
+ });
1205
+ Object.setPrototypeOf(this, InvalidTokenException.prototype);
1206
+ this.Message = opts.Message;
1207
+ }
1208
+ }
1209
+ class InvalidDateRangeException extends CloudTrailServiceException {
1210
+ name = "InvalidDateRangeException";
1211
+ $fault = "client";
1212
+ Message;
1213
+ constructor(opts) {
1214
+ super({
1215
+ name: "InvalidDateRangeException",
1216
+ $fault: "client",
1217
+ ...opts,
1218
+ });
1219
+ Object.setPrototypeOf(this, InvalidDateRangeException.prototype);
1220
+ this.Message = opts.Message;
1221
+ }
1222
+ }
1223
+ class InvalidQueryStatusException extends CloudTrailServiceException {
1224
+ name = "InvalidQueryStatusException";
1225
+ $fault = "client";
1226
+ Message;
1227
+ constructor(opts) {
1228
+ super({
1229
+ name: "InvalidQueryStatusException",
1230
+ $fault: "client",
1231
+ ...opts,
1232
+ });
1233
+ Object.setPrototypeOf(this, InvalidQueryStatusException.prototype);
1234
+ this.Message = opts.Message;
1235
+ }
1236
+ }
1237
+ class InvalidEventCategoryException extends CloudTrailServiceException {
1238
+ name = "InvalidEventCategoryException";
1239
+ $fault = "client";
1240
+ Message;
1241
+ constructor(opts) {
1242
+ super({
1243
+ name: "InvalidEventCategoryException",
1244
+ $fault: "client",
1245
+ ...opts,
1246
+ });
1247
+ Object.setPrototypeOf(this, InvalidEventCategoryException.prototype);
1248
+ this.Message = opts.Message;
1249
+ }
1250
+ }
1251
+ class InvalidLookupAttributesException extends CloudTrailServiceException {
1252
+ name = "InvalidLookupAttributesException";
1253
+ $fault = "client";
1254
+ Message;
1255
+ constructor(opts) {
1256
+ super({
1257
+ name: "InvalidLookupAttributesException",
1258
+ $fault: "client",
1259
+ ...opts,
1260
+ });
1261
+ Object.setPrototypeOf(this, InvalidLookupAttributesException.prototype);
1262
+ this.Message = opts.Message;
1263
+ }
1264
+ }
1265
+ class InsufficientIAMAccessPermissionException extends CloudTrailServiceException {
1266
+ name = "InsufficientIAMAccessPermissionException";
1267
+ $fault = "client";
1268
+ Message;
1269
+ constructor(opts) {
1270
+ super({
1271
+ name: "InsufficientIAMAccessPermissionException",
1272
+ $fault: "client",
1273
+ ...opts,
1274
+ });
1275
+ Object.setPrototypeOf(this, InsufficientIAMAccessPermissionException.prototype);
1276
+ this.Message = opts.Message;
1277
+ }
1278
+ }
1279
+ class InvalidInsightSelectorsException extends CloudTrailServiceException {
1280
+ name = "InvalidInsightSelectorsException";
1281
+ $fault = "client";
1282
+ Message;
1283
+ constructor(opts) {
1284
+ super({
1285
+ name: "InvalidInsightSelectorsException",
1286
+ $fault: "client",
1287
+ ...opts,
1288
+ });
1289
+ Object.setPrototypeOf(this, InvalidInsightSelectorsException.prototype);
1290
+ this.Message = opts.Message;
1291
+ }
1292
+ }
1293
+ class ResourcePolicyNotValidException extends CloudTrailServiceException {
1294
+ name = "ResourcePolicyNotValidException";
1295
+ $fault = "client";
1296
+ Message;
1297
+ constructor(opts) {
1298
+ super({
1299
+ name: "ResourcePolicyNotValidException",
1300
+ $fault: "client",
1301
+ ...opts,
1302
+ });
1303
+ Object.setPrototypeOf(this, ResourcePolicyNotValidException.prototype);
1304
+ this.Message = opts.Message;
1305
+ }
1306
+ }
1307
+ class DelegatedAdminAccountLimitExceededException extends CloudTrailServiceException {
1308
+ name = "DelegatedAdminAccountLimitExceededException";
1309
+ $fault = "client";
1310
+ Message;
1311
+ constructor(opts) {
1312
+ super({
1313
+ name: "DelegatedAdminAccountLimitExceededException",
1314
+ $fault: "client",
1315
+ ...opts,
1316
+ });
1317
+ Object.setPrototypeOf(this, DelegatedAdminAccountLimitExceededException.prototype);
1318
+ this.Message = opts.Message;
1319
+ }
1320
+ }
1321
+ class InvalidImportSourceException extends CloudTrailServiceException {
1322
+ name = "InvalidImportSourceException";
1323
+ $fault = "client";
1324
+ Message;
1325
+ constructor(opts) {
1326
+ super({
1327
+ name: "InvalidImportSourceException",
1328
+ $fault: "client",
1329
+ ...opts,
1330
+ });
1331
+ Object.setPrototypeOf(this, InvalidImportSourceException.prototype);
1332
+ this.Message = opts.Message;
1333
+ }
1334
+ }
1335
+ class MaxConcurrentQueriesException extends CloudTrailServiceException {
1336
+ name = "MaxConcurrentQueriesException";
1337
+ $fault = "client";
1338
+ Message;
1339
+ constructor(opts) {
1340
+ super({
1341
+ name: "MaxConcurrentQueriesException",
1342
+ $fault: "client",
1343
+ ...opts,
1344
+ });
1345
+ Object.setPrototypeOf(this, MaxConcurrentQueriesException.prototype);
1346
+ this.Message = opts.Message;
1347
+ }
1348
+ }
1349
+
1350
+ const _AC = "AggregationConfiguration";
1351
+ const _ACg = "AggregationConfigurations";
1352
+ const _ADE = "AccessDeniedException";
1353
+ const _AES = "AdvancedEventSelector";
1354
+ const _AESd = "AdvancedEventSelectors";
1355
+ const _AFS = "AdvancedFieldSelector";
1356
+ const _AFSd = "AdvancedFieldSelectors";
1357
+ const _AHOIE = "AccountHasOngoingImportException";
1358
+ const _AK = "AttributeKey";
1359
+ const _AKI = "AccessKeyId";
1360
+ const _ANFE = "AccountNotFoundException";
1361
+ const _ANRE = "AccountNotRegisteredException";
1362
+ const _ARE = "AccountRegisteredException";
1363
+ const _AT = "AddTags";
1364
+ const _ATAR = "ApplyToAllRegions";
1365
+ const _ATR = "AddTagsRequest";
1366
+ const _ATRd = "AddTagsResponse";
1367
+ const _AV = "AttributeValue";
1368
+ const _BM = "BillingMode";
1369
+ const _BS = "BytesScanned";
1370
+ const _C = "Channel";
1371
+ const _CA = "ChannelArn";
1372
+ const _CAEE = "ChannelAlreadyExistsException";
1373
+ const _CARNIE = "ChannelARNInvalidException";
1374
+ const _CC = "CreateChannel";
1375
+ const _CCR = "CreateChannelRequest";
1376
+ const _CCRr = "CreateChannelResponse";
1377
+ const _CD = "CreateDashboard";
1378
+ const _CDMAE = "CannotDelegateManagementAccountException";
1379
+ const _CDR = "CreateDashboardRequest";
1380
+ const _CDRr = "CreateDashboardResponse";
1381
+ const _CE = "ConflictException";
1382
+ const _CEDS = "CreateEventDataStore";
1383
+ const _CEDSR = "CreateEventDataStoreRequest";
1384
+ const _CEDSRr = "CreateEventDataStoreResponse";
1385
+ const _CEFEDSE = "ChannelExistsForEDSException";
1386
+ const _CKS = "ContextKeySelector";
1387
+ const _CKSo = "ContextKeySelectors";
1388
+ const _CME = "ConcurrentModificationException";
1389
+ const _CMLEE = "ChannelMaxLimitExceededException";
1390
+ const _CNFE = "ChannelNotFoundException";
1391
+ const _CQ = "CancelQuery";
1392
+ const _CQR = "CancelQueryRequest";
1393
+ const _CQRa = "CancelQueryResponse";
1394
+ const _CT = "CreatedTimestamp";
1395
+ const _CTANEE = "CloudTrailAccessNotEnabledException";
1396
+ const _CTARNIE = "CloudTrailARNInvalidException";
1397
+ const _CTE = "CloudTrailEvent";
1398
+ const _CTICTIE = "CloudTrailInvalidClientTokenIdException";
1399
+ const _CTR = "CreateTrailRequest";
1400
+ const _CTRr = "CreateTrailResponse";
1401
+ const _CTr = "CreationTime";
1402
+ const _CTre = "CreateTrail";
1403
+ const _CWLDUE = "CloudWatchLogsDeliveryUnavailableException";
1404
+ const _CWLLGA = "CloudWatchLogsLogGroupArn";
1405
+ const _CWLRA = "CloudWatchLogsRoleArn";
1406
+ const _Ch = "Channels";
1407
+ const _D = "Destinations";
1408
+ const _DA = "DashboardArn";
1409
+ const _DAAI = "DelegatedAdminAccountId";
1410
+ const _DAALEE = "DelegatedAdminAccountLimitExceededException";
1411
+ const _DARP = "DelegatedAdminResourcePolicy";
1412
+ const _DC = "DeleteChannel";
1413
+ const _DCR = "DeleteChannelRequest";
1414
+ const _DCRe = "DeleteChannelResponse";
1415
+ const _DD = "DashboardDetail";
1416
+ const _DDR = "DeleteDashboardRequest";
1417
+ const _DDRe = "DeleteDashboardResponse";
1418
+ const _DDe = "DeleteDashboard";
1419
+ const _DEDS = "DeleteEventDataStore";
1420
+ const _DEDSR = "DeleteEventDataStoreRequest";
1421
+ const _DEDSRe = "DeleteEventDataStoreResponse";
1422
+ const _DF = "DisableFederation";
1423
+ const _DFR = "DisableFederationRequest";
1424
+ const _DFRi = "DisableFederationResponse";
1425
+ const _DI = "DashboardId";
1426
+ const _DODA = "DeregisterOrganizationDelegatedAdmin";
1427
+ const _DODAR = "DeregisterOrganizationDelegatedAdminRequest";
1428
+ const _DODARe = "DeregisterOrganizationDelegatedAdminResponse";
1429
+ const _DQ = "DescribeQuery";
1430
+ const _DQR = "DescribeQueryRequest";
1431
+ const _DQRe = "DescribeQueryResponse";
1432
+ const _DR = "DataResource";
1433
+ const _DRP = "DeleteResourcePolicy";
1434
+ const _DRPR = "DeleteResourcePolicyRequest";
1435
+ const _DRPRe = "DeleteResourcePolicyResponse";
1436
+ const _DRa = "DataResources";
1437
+ const _DS = "DeliveryStatus";
1438
+ const _DSU = "DeliveryS3Uri";
1439
+ const _DT = "DataType";
1440
+ const _DTR = "DeleteTrailRequest";
1441
+ const _DTRe = "DeleteTrailResponse";
1442
+ const _DTRes = "DescribeTrailsRequest";
1443
+ const _DTResc = "DescribeTrailsResponse";
1444
+ const _DTe = "DeleteTrail";
1445
+ const _DTes = "DescribeTrails";
1446
+ const _Da = "Dashboards";
1447
+ const _De = "Destination";
1448
+ const _Des = "Description";
1449
+ const _Di = "Dimensions";
1450
+ const _E = "Equals";
1451
+ const _EC = "EventCategory";
1452
+ const _ECr = "ErrorCode";
1453
+ const _ECv = "EventsCompleted";
1454
+ const _ECve = "EventCategories";
1455
+ const _EDS = "EventDataStore";
1456
+ const _EDSA = "EventDataStoreArn";
1457
+ const _EDSAEE = "EventDataStoreAlreadyExistsException";
1458
+ const _EDSARNIE = "EventDataStoreARNInvalidException";
1459
+ const _EDSFEE = "EventDataStoreFederationEnabledException";
1460
+ const _EDSHOIE = "EventDataStoreHasOngoingImportException";
1461
+ const _EDSMLEE = "EventDataStoreMaxLimitExceededException";
1462
+ const _EDSNFE = "EventDataStoreNotFoundException";
1463
+ const _EDSOAI = "EventDataStoreOwnerAccountId";
1464
+ const _EDSTPE = "EventDataStoreTerminationProtectedException";
1465
+ const _EDSv = "EventDataStores";
1466
+ const _EET = "EndEventTime";
1467
+ const _EF = "EnableFederation";
1468
+ const _EFR = "EnableFederationRequest";
1469
+ const _EFRn = "EnableFederationResponse";
1470
+ const _EI = "EventId";
1471
+ const _EL = "EventsList";
1472
+ const _ELFV = "EnableLogFileValidation";
1473
+ const _EM = "ErrorMessage";
1474
+ const _EMES = "ExcludeManagementEventSources";
1475
+ const _EMv = "EventsMatched";
1476
+ const _EN = "EventName";
1477
+ const _ES = "EventSource";
1478
+ const _ESv = "EventSelector";
1479
+ const _ESve = "EventSelectors";
1480
+ const _ESven = "EventsScanned";
1481
+ const _ET = "EventTime";
1482
+ const _ETIM = "ExecutionTimeInMillis";
1483
+ const _ETn = "EndTime";
1484
+ const _ETr = "ErrorType";
1485
+ const _EW = "EndsWith";
1486
+ const _Ev = "Event";
1487
+ const _Eve = "Events";
1488
+ const _F = "Field";
1489
+ const _FC = "FilesCompleted";
1490
+ const _FE = "FailedEntries";
1491
+ const _FRA = "FederationRoleArn";
1492
+ const _FS = "FieldSelectors";
1493
+ const _FSe = "FederationStatus";
1494
+ const _Fa = "Failures";
1495
+ const _Fi = "Fingerprint";
1496
+ const _Fr = "Frequency";
1497
+ const _GC = "GetChannel";
1498
+ const _GCR = "GetChannelRequest";
1499
+ const _GCRe = "GetChannelResponse";
1500
+ const _GD = "GetDashboard";
1501
+ const _GDR = "GetDashboardRequest";
1502
+ const _GDRe = "GetDashboardResponse";
1503
+ const _GEC = "GetEventConfiguration";
1504
+ const _GECR = "GetEventConfigurationRequest";
1505
+ const _GECRe = "GetEventConfigurationResponse";
1506
+ const _GEDS = "GetEventDataStore";
1507
+ const _GEDSR = "GetEventDataStoreRequest";
1508
+ const _GEDSRe = "GetEventDataStoreResponse";
1509
+ const _GES = "GetEventSelectors";
1510
+ const _GESR = "GetEventSelectorsRequest";
1511
+ const _GESRe = "GetEventSelectorsResponse";
1512
+ const _GI = "GetImport";
1513
+ const _GIR = "GetImportRequest";
1514
+ const _GIRe = "GetImportResponse";
1515
+ const _GIS = "GetInsightSelectors";
1516
+ const _GISR = "GetInsightSelectorsRequest";
1517
+ const _GISRe = "GetInsightSelectorsResponse";
1518
+ const _GQ = "GenerateQuery";
1519
+ const _GQR = "GenerateQueryRequest";
1520
+ const _GQRR = "GetQueryResultsRequest";
1521
+ const _GQRRe = "GetQueryResultsResponse";
1522
+ const _GQRe = "GenerateQueryResponse";
1523
+ const _GQRet = "GetQueryResults";
1524
+ const _GRE = "GenerateResponseException";
1525
+ const _GRP = "GetResourcePolicy";
1526
+ const _GRPR = "GetResourcePolicyRequest";
1527
+ const _GRPRe = "GetResourcePolicyResponse";
1528
+ const _GT = "GetTrail";
1529
+ const _GTR = "GetTrailRequest";
1530
+ const _GTRe = "GetTrailResponse";
1531
+ const _GTS = "GetTrailStatus";
1532
+ const _GTSR = "GetTrailStatusRequest";
1533
+ const _GTSRe = "GetTrailStatusResponse";
1534
+ const _HCES = "HasCustomEventSelectors";
1535
+ const _HIS = "HasInsightSelectors";
1536
+ const _HR = "HomeRegion";
1537
+ const _I = "Imports";
1538
+ const _ICWLLGAE = "InvalidCloudWatchLogsLogGroupArnException";
1539
+ const _ICWLRAE = "InvalidCloudWatchLogsRoleArnException";
1540
+ const _ID = "InsightsDestination";
1541
+ const _IDRE = "InvalidDateRangeException";
1542
+ const _IDSAPE = "InsufficientDependencyServiceAccessPermissionException";
1543
+ const _IECE = "InvalidEventCategoryException";
1544
+ const _IEDSCE = "InvalidEventDataStoreCategoryException";
1545
+ const _IEDSE = "InactiveEventDataStoreException";
1546
+ const _IEDSSE = "InvalidEventDataStoreStatusException";
1547
+ const _IEPE = "InsufficientEncryptionPolicyException";
1548
+ const _IESE = "InvalidEventSelectorsException";
1549
+ const _IFL = "ImportFailureList";
1550
+ const _IFLI = "ImportFailureListItem";
1551
+ const _IGSE = "IncludeGlobalServiceEvents";
1552
+ const _IHRE = "InvalidHomeRegionException";
1553
+ const _II = "ImportId";
1554
+ const _IIAMAPE = "InsufficientIAMAccessPermissionException";
1555
+ const _IISE = "InvalidImportSourceException";
1556
+ const _IISEn = "InvalidInsightSelectorsException";
1557
+ const _IKKIE = "InvalidKmsKeyIdException";
1558
+ const _IL = "IsLogging";
1559
+ const _ILAE = "InvalidLookupAttributesException";
1560
+ const _ILI = "ImportsListItem";
1561
+ const _ILm = "ImportsList";
1562
+ const _IME = "IncludeManagementEvents";
1563
+ const _IMRE = "InvalidMaxResultsException";
1564
+ const _IMRT = "IsMultiRegionTrail";
1565
+ const _INEE = "InsightNotEnabledException";
1566
+ const _INFE = "ImportNotFoundException";
1567
+ const _INTE = "InvalidNextTokenException";
1568
+ const _IOT = "IsOrganizationTrail";
1569
+ const _IPCE = "InvalidParameterCombinationException";
1570
+ const _IPE = "InvalidParameterException";
1571
+ const _IQE = "InactiveQueryException";
1572
+ const _IQSE = "InvalidQueryStatementException";
1573
+ const _IQSEn = "InvalidQueryStatusException";
1574
+ const _IS = "IngestionStatus";
1575
+ const _ISBNE = "InvalidS3BucketNameException";
1576
+ const _ISBPE = "InsufficientS3BucketPolicyException";
1577
+ const _ISE = "InvalidSourceException";
1578
+ const _ISPE = "InvalidS3PrefixException";
1579
+ const _ISTNE = "InvalidSnsTopicNameException";
1580
+ const _ISTPE = "InsufficientSnsTopicPolicyException";
1581
+ const _ISm = "ImportSource";
1582
+ const _ISmp = "ImportStatus";
1583
+ const _ISmpo = "ImportStatistics";
1584
+ const _ISn = "InsightSelectors";
1585
+ const _ISns = "InsightSelector";
1586
+ const _ISnsi = "InsightSource";
1587
+ const _IT = "InsightType";
1588
+ const _ITE = "InvalidTokenException";
1589
+ const _ITNE = "InvalidTrailNameException";
1590
+ const _ITPE = "InvalidTagParameterException";
1591
+ const _ITRE = "InvalidTimeRangeException";
1592
+ const _K = "Key";
1593
+ const _KE = "KmsException";
1594
+ const _KKDE = "KmsKeyDisabledException";
1595
+ const _KKI = "KmsKeyId";
1596
+ const _KKNFE = "KmsKeyNotFoundException";
1597
+ const _L = "Location";
1598
+ const _LA = "LookupAttribute";
1599
+ const _LAL = "LookupAttributesList";
1600
+ const _LAo = "LookupAttributes";
1601
+ const _LC = "ListChannels";
1602
+ const _LCR = "ListChannelsRequest";
1603
+ const _LCRi = "ListChannelsResponse";
1604
+ const _LCWLDE = "LatestCloudWatchLogsDeliveryError";
1605
+ const _LCWLDT = "LatestCloudWatchLogsDeliveryTime";
1606
+ const _LD = "ListDashboards";
1607
+ const _LDAS = "LatestDeliveryAttemptSucceeded";
1608
+ const _LDAT = "LatestDeliveryAttemptTime";
1609
+ const _LDDE = "LatestDigestDeliveryError";
1610
+ const _LDDT = "LatestDigestDeliveryTime";
1611
+ const _LDE = "LatestDeliveryError";
1612
+ const _LDR = "ListDashboardsRequest";
1613
+ const _LDRi = "ListDashboardsResponse";
1614
+ const _LDT = "LatestDeliveryTime";
1615
+ const _LE = "LookupEvents";
1616
+ const _LEDS = "ListEventDataStores";
1617
+ const _LEDSR = "ListEventDataStoresRequest";
1618
+ const _LEDSRi = "ListEventDataStoresResponse";
1619
+ const _LER = "LookupEventsRequest";
1620
+ const _LERo = "LookupEventsResponse";
1621
+ const _LFVE = "LogFileValidationEnabled";
1622
+ const _LI = "ListImports";
1623
+ const _LIAEID = "LatestIngestionAttemptEventID";
1624
+ const _LIAT = "LatestIngestionAttemptTime";
1625
+ const _LID = "ListInsightsData";
1626
+ const _LIDR = "ListInsightsDataRequest";
1627
+ const _LIDRi = "ListInsightsDataResponse";
1628
+ const _LIEC = "LatestIngestionErrorCode";
1629
+ const _LIF = "ListImportFailures";
1630
+ const _LIFR = "ListImportFailuresRequest";
1631
+ const _LIFRi = "ListImportFailuresResponse";
1632
+ const _LIMD = "ListInsightsMetricData";
1633
+ const _LIMDR = "ListInsightsMetricDataRequest";
1634
+ const _LIMDRi = "ListInsightsMetricDataResponse";
1635
+ const _LIR = "ListImportsRequest";
1636
+ const _LIRi = "ListImportsResponse";
1637
+ const _LISEID = "LatestIngestionSuccessEventID";
1638
+ const _LIST = "LatestIngestionSuccessTime";
1639
+ const _LNAS = "LatestNotificationAttemptSucceeded";
1640
+ const _LNAT = "LatestNotificationAttemptTime";
1641
+ const _LNE = "LatestNotificationError";
1642
+ const _LNT = "LatestNotificationTime";
1643
+ const _LPK = "ListPublicKeys";
1644
+ const _LPKR = "ListPublicKeysRequest";
1645
+ const _LPKRi = "ListPublicKeysResponse";
1646
+ const _LQ = "ListQueries";
1647
+ const _LQR = "ListQueriesRequest";
1648
+ const _LQRi = "ListQueriesResponse";
1649
+ const _LRFR = "LastRefreshFailureReason";
1650
+ const _LRI = "LastRefreshId";
1651
+ const _LT = "ListTags";
1652
+ const _LTR = "ListTagsRequest";
1653
+ const _LTRi = "ListTagsResponse";
1654
+ const _LTRis = "ListTrailsRequest";
1655
+ const _LTRist = "ListTrailsResponse";
1656
+ const _LTi = "ListTrails";
1657
+ const _LUT = "LastUpdatedTime";
1658
+ const _M = "Message";
1659
+ const _MAI = "MemberAccountId";
1660
+ const _MCQE = "MaxConcurrentQueriesException";
1661
+ const _MES = "MaxEventSize";
1662
+ const _MNOTEE = "MaximumNumberOfTrailsExceededException";
1663
+ const _MQR = "MaxQueryResults";
1664
+ const _MR = "MaxResults";
1665
+ const _MRE = "MultiRegionEnabled";
1666
+ const _N = "Name";
1667
+ const _NE = "NotEquals";
1668
+ const _NEW = "NotEndsWith";
1669
+ const _NMASLREE = "NoManagementAccountSLRExistsException";
1670
+ const _NOMAE = "NotOrganizationManagementAccountException";
1671
+ const _NOMAEo = "NotOrganizationMasterAccountException";
1672
+ const _NP = "NamePrefix";
1673
+ const _NSW = "NotStartsWith";
1674
+ const _NT = "NextToken";
1675
+ const _OE = "OrganizationEnabled";
1676
+ const _ONIAFME = "OrganizationNotInAllFeaturesModeException";
1677
+ const _ONIUE = "OrganizationsNotInUseException";
1678
+ const _ONPE = "OperationNotPermittedException";
1679
+ const _P = "Prompt";
1680
+ const _PC = "PrefixesCompleted";
1681
+ const _PEC = "PutEventConfiguration";
1682
+ const _PECR = "PutEventConfigurationRequest";
1683
+ const _PECRu = "PutEventConfigurationResponse";
1684
+ const _PES = "PutEventSelectors";
1685
+ const _PESR = "PutEventSelectorsRequest";
1686
+ const _PESRu = "PutEventSelectorsResponse";
1687
+ const _PF = "PrefixesFound";
1688
+ const _PIS = "PutInsightSelectors";
1689
+ const _PISR = "PutInsightSelectorsRequest";
1690
+ const _PISRu = "PutInsightSelectorsResponse";
1691
+ const _PK = "PartitionKeys";
1692
+ const _PKL = "PublicKeyList";
1693
+ const _PKLa = "PartitionKeyList";
1694
+ const _PKa = "PartitionKey";
1695
+ const _PKu = "PublicKey";
1696
+ const _PRP = "PutResourcePolicy";
1697
+ const _PRPR = "PutResourcePolicyRequest";
1698
+ const _PRPRu = "PutResourcePolicyResponse";
1699
+ const _Pe = "Period";
1700
+ const _Q = "Queries";
1701
+ const _QA = "QueryAlias";
1702
+ const _QI = "QueryId";
1703
+ const _QINFE = "QueryIdNotFoundException";
1704
+ const _QP = "QueryParameters";
1705
+ const _QPV = "QueryParameterValues";
1706
+ const _QRR = "QueryResultRows";
1707
+ const _QRRu = "QueryResultRow";
1708
+ const _QS = "QueryStatus";
1709
+ const _QSFDQ = "QueryStatisticsForDescribeQuery";
1710
+ const _QSu = "QueryString";
1711
+ const _QSue = "QueryStatistics";
1712
+ const _QSuer = "QueryStatement";
1713
+ const _Qu = "Query";
1714
+ const _R = "Resources";
1715
+ const _RA = "ResourceArn";
1716
+ const _RARNNVE = "ResourceARNNotValidException";
1717
+ const _RC = "ResultsCount";
1718
+ const _REDS = "RestoreEventDataStore";
1719
+ const _REDSR = "RestoreEventDataStoreRequest";
1720
+ const _REDSRe = "RestoreEventDataStoreResponse";
1721
+ const _RI = "ResourceId";
1722
+ const _RIL = "ResourceIdList";
1723
+ const _RIe = "RefreshId";
1724
+ const _RL = "ResourceList";
1725
+ const _RN = "ResourceName";
1726
+ const _RNFE = "ResourceNotFoundException";
1727
+ const _RO = "ReadOnly";
1728
+ const _RODA = "RegisterOrganizationDelegatedAdmin";
1729
+ const _RODAR = "RegisterOrganizationDelegatedAdminRequest";
1730
+ const _RODARe = "RegisterOrganizationDelegatedAdminResponse";
1731
+ const _RP = "RetentionPeriod";
1732
+ const _RPNFE = "ResourcePolicyNotFoundException";
1733
+ const _RPNVE = "ResourcePolicyNotValidException";
1734
+ const _RPe = "ResourcePolicy";
1735
+ const _RS = "RefreshSchedule";
1736
+ const _RSF = "RefreshScheduleFrequency";
1737
+ const _RT = "ResourceType";
1738
+ const _RTL = "ResourceTagList";
1739
+ const _RTNSE = "ResourceTypeNotSupportedException";
1740
+ const _RTR = "RemoveTagsRequest";
1741
+ const _RTRe = "RemoveTagsResponse";
1742
+ const _RTe = "ResourceTag";
1743
+ const _RTem = "RemoveTags";
1744
+ const _RW = "RequestWidget";
1745
+ const _RWL = "RequestWidgetList";
1746
+ const _RWT = "ReadWriteType";
1747
+ const _Re = "Resource";
1748
+ const _Rel = "Relevance";
1749
+ const _S = "Source";
1750
+ const _SBARA = "S3BucketAccessRoleArn";
1751
+ const _SBDNEE = "S3BucketDoesNotExistException";
1752
+ const _SBN = "S3BucketName";
1753
+ const _SBR = "S3BucketRegion";
1754
+ const _SC = "SourceConfig";
1755
+ const _SDR = "StartDashboardRefresh";
1756
+ const _SDRR = "StartDashboardRefreshRequest";
1757
+ const _SDRRt = "StartDashboardRefreshResponse";
1758
+ const _SEDSI = "StartEventDataStoreIngestion";
1759
+ const _SEDSIR = "StartEventDataStoreIngestionRequest";
1760
+ const _SEDSIRt = "StartEventDataStoreIngestionResponse";
1761
+ const _SEDSIRto = "StopEventDataStoreIngestionRequest";
1762
+ const _SEDSIRtop = "StopEventDataStoreIngestionResponse";
1763
+ const _SEDSIt = "StopEventDataStoreIngestion";
1764
+ const _SET = "StartEventTime";
1765
+ const _SI = "StartIngestion";
1766
+ const _SIR = "StartImportRequest";
1767
+ const _SIRt = "StartImportResponse";
1768
+ const _SIRto = "StopImportRequest";
1769
+ const _SIRtop = "StopImportResponse";
1770
+ const _SIS = "S3ImportSource";
1771
+ const _SIt = "StartImport";
1772
+ const _SIto = "StopImport";
1773
+ const _SKP = "S3KeyPrefix";
1774
+ const _SL = "StartLogging";
1775
+ const _SLR = "StartLoggingRequest";
1776
+ const _SLRt = "StartLoggingResponse";
1777
+ const _SLRto = "StopLoggingRequest";
1778
+ const _SLRtop = "StopLoggingResponse";
1779
+ const _SLT = "StartLoggingTime";
1780
+ const _SLTt = "StopLoggingTime";
1781
+ const _SLU = "S3LocationUri";
1782
+ const _SLt = "StopLogging";
1783
+ const _SP = "SearchPhrase";
1784
+ const _SQ = "StartQuery";
1785
+ const _SQEE = "ServiceQuotaExceededException";
1786
+ const _SQL = "SQL";
1787
+ const _SQR = "StartQueryRequest";
1788
+ const _SQRt = "StartQueryResponse";
1789
+ const _SR = "SearchResults";
1790
+ const _SSQ = "SearchSampleQueries";
1791
+ const _SSQR = "SearchSampleQueriesRequest";
1792
+ const _SSQRe = "SearchSampleQueriesResponse";
1793
+ const _SSQSR = "SearchSampleQueriesSearchResult";
1794
+ const _SSQSRe = "SearchSampleQueriesSearchResults";
1795
+ const _ST = "StartTime";
1796
+ const _STARN = "SnsTopicARN";
1797
+ const _STN = "SnsTopicName";
1798
+ const _SW = "StartsWith";
1799
+ const _S_ = "S3";
1800
+ const _St = "Status";
1801
+ const _T = "Templates";
1802
+ const _TAEE = "TrailAlreadyExistsException";
1803
+ const _TARN = "TrailARN";
1804
+ const _TE = "ThrottlingException";
1805
+ const _TI = "TrailInfo";
1806
+ const _TL = "TagsList";
1807
+ const _TLEE = "TagsLimitExceededException";
1808
+ const _TLS = "TimeLoggingStarted";
1809
+ const _TLSi = "TimeLoggingStopped";
1810
+ const _TLr = "TrailList";
1811
+ const _TN = "TrailName";
1812
+ const _TNFE = "TrailNotFoundException";
1813
+ const _TNPE = "TrailNotProvidedException";
1814
+ const _TOD = "TimeOfDay";
1815
+ const _TPE = "TerminationProtectionEnabled";
1816
+ const _TRC = "TotalResultsCount";
1817
+ const _Ta = "Tags";
1818
+ const _Tag = "Tag";
1819
+ const _Ti = "Timestamps";
1820
+ const _Tr = "Trail";
1821
+ const _Tra = "Trails";
1822
+ const _Ty = "Type";
1823
+ const _U = "Username";
1824
+ const _UC = "UpdateChannel";
1825
+ const _UCR = "UpdateChannelRequest";
1826
+ const _UCRp = "UpdateChannelResponse";
1827
+ const _UD = "UpdateDashboard";
1828
+ const _UDR = "UpdateDashboardRequest";
1829
+ const _UDRp = "UpdateDashboardResponse";
1830
+ const _UEDS = "UpdateEventDataStore";
1831
+ const _UEDSR = "UpdateEventDataStoreRequest";
1832
+ const _UEDSRp = "UpdateEventDataStoreResponse";
1833
+ const _UOE = "UnsupportedOperationException";
1834
+ const _UT = "UpdatedTimestamp";
1835
+ const _UTR = "UpdateTrailRequest";
1836
+ const _UTRp = "UpdateTrailResponse";
1837
+ const _UTp = "UpdateTrail";
1838
+ const _Un = "Unit";
1839
+ const _V = "Values";
1840
+ const _VET = "ValidityEndTime";
1841
+ const _VP = "ViewProperties";
1842
+ const _VST = "ValidityStartTime";
1843
+ const _Va = "Value";
1844
+ const _W = "Widgets";
1845
+ const _WL = "WidgetList";
1846
+ const _Wi = "Widget";
1847
+ const _aQE = "awsQueryError";
1848
+ const _c = "client";
1849
+ const _e = "error";
1850
+ const _hE = "httpError";
1851
+ const _iST = "includeShadowTrails";
1852
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cloudtrail";
1853
+ const _tL = "trailList";
1854
+ const _tNL = "trailNameList";
1855
+ const n0 = "com.amazonaws.cloudtrail";
1856
+ const _s_registry = TypeRegistry.for(_s);
1857
+ var CloudTrailServiceException$ = [-3, _s, "CloudTrailServiceException", 0, [], []];
1858
+ _s_registry.registerError(CloudTrailServiceException$, CloudTrailServiceException);
1859
+ const n0_registry = TypeRegistry.for(n0);
1860
+ var AccessDeniedException$ = [-3, n0, _ADE,
1861
+ { [_aQE]: [`ResourceAccessDenied`, 403], [_e]: _c, [_hE]: 403 },
1862
+ [_M],
1863
+ [0]
1864
+ ];
1865
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
1866
+ var AccountHasOngoingImportException$ = [-3, n0, _AHOIE,
1867
+ { [_aQE]: [`AccountHasOngoingImport`, 400], [_e]: _c, [_hE]: 400 },
1868
+ [_M],
1869
+ [0]
1870
+ ];
1871
+ n0_registry.registerError(AccountHasOngoingImportException$, AccountHasOngoingImportException);
1872
+ var AccountNotFoundException$ = [-3, n0, _ANFE,
1873
+ { [_aQE]: [`AccountNotFound`, 404], [_e]: _c, [_hE]: 404 },
1874
+ [_M],
1875
+ [0]
1876
+ ];
1877
+ n0_registry.registerError(AccountNotFoundException$, AccountNotFoundException);
1878
+ var AccountNotRegisteredException$ = [-3, n0, _ANRE,
1879
+ { [_aQE]: [`AccountNotRegistered`, 400], [_e]: _c, [_hE]: 400 },
1880
+ [_M],
1881
+ [0]
1882
+ ];
1883
+ n0_registry.registerError(AccountNotRegisteredException$, AccountNotRegisteredException);
1884
+ var AccountRegisteredException$ = [-3, n0, _ARE,
1885
+ { [_aQE]: [`AccountRegistered`, 400], [_e]: _c, [_hE]: 400 },
1886
+ [_M],
1887
+ [0]
1888
+ ];
1889
+ n0_registry.registerError(AccountRegisteredException$, AccountRegisteredException);
1890
+ var CannotDelegateManagementAccountException$ = [-3, n0, _CDMAE,
1891
+ { [_aQE]: [`CannotDelegateManagementAccount`, 400], [_e]: _c, [_hE]: 400 },
1892
+ [_M],
1893
+ [0]
1894
+ ];
1895
+ n0_registry.registerError(CannotDelegateManagementAccountException$, CannotDelegateManagementAccountException);
1896
+ var ChannelAlreadyExistsException$ = [-3, n0, _CAEE,
1897
+ { [_aQE]: [`ChannelAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1898
+ [_M],
1899
+ [0]
1900
+ ];
1901
+ n0_registry.registerError(ChannelAlreadyExistsException$, ChannelAlreadyExistsException);
1902
+ var ChannelARNInvalidException$ = [-3, n0, _CARNIE,
1903
+ { [_aQE]: [`ChannelARNInvalid`, 400], [_e]: _c, [_hE]: 400 },
1904
+ [_M],
1905
+ [0]
1906
+ ];
1907
+ n0_registry.registerError(ChannelARNInvalidException$, ChannelARNInvalidException);
1908
+ var ChannelExistsForEDSException$ = [-3, n0, _CEFEDSE,
1909
+ { [_aQE]: [`ChannelExistsForEDS`, 400], [_e]: _c, [_hE]: 400 },
1910
+ [_M],
1911
+ [0]
1912
+ ];
1913
+ n0_registry.registerError(ChannelExistsForEDSException$, ChannelExistsForEDSException);
1914
+ var ChannelMaxLimitExceededException$ = [-3, n0, _CMLEE,
1915
+ { [_aQE]: [`ChannelMaxLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
1916
+ [_M],
1917
+ [0]
1918
+ ];
1919
+ n0_registry.registerError(ChannelMaxLimitExceededException$, ChannelMaxLimitExceededException);
1920
+ var ChannelNotFoundException$ = [-3, n0, _CNFE,
1921
+ { [_aQE]: [`ChannelNotFound`, 404], [_e]: _c, [_hE]: 404 },
1922
+ [_M],
1923
+ [0]
1924
+ ];
1925
+ n0_registry.registerError(ChannelNotFoundException$, ChannelNotFoundException);
1926
+ var CloudTrailAccessNotEnabledException$ = [-3, n0, _CTANEE,
1927
+ { [_aQE]: [`CloudTrailAccessNotEnabled`, 400], [_e]: _c, [_hE]: 400 },
1928
+ [_M],
1929
+ [0]
1930
+ ];
1931
+ n0_registry.registerError(CloudTrailAccessNotEnabledException$, CloudTrailAccessNotEnabledException);
1932
+ var CloudTrailARNInvalidException$ = [-3, n0, _CTARNIE,
1933
+ { [_aQE]: [`CloudTrailARNInvalid`, 400], [_e]: _c, [_hE]: 400 },
1934
+ [_M],
1935
+ [0]
1936
+ ];
1937
+ n0_registry.registerError(CloudTrailARNInvalidException$, CloudTrailARNInvalidException);
1938
+ var CloudTrailInvalidClientTokenIdException$ = [-3, n0, _CTICTIE,
1939
+ { [_aQE]: [`CloudTrailInvalidClientTokenId`, 400], [_e]: _c, [_hE]: 400 },
1940
+ [_M],
1941
+ [0]
1942
+ ];
1943
+ n0_registry.registerError(CloudTrailInvalidClientTokenIdException$, CloudTrailInvalidClientTokenIdException);
1944
+ var CloudWatchLogsDeliveryUnavailableException$ = [-3, n0, _CWLDUE,
1945
+ { [_aQE]: [`CloudWatchLogsDeliveryUnavailable`, 400], [_e]: _c, [_hE]: 400 },
1946
+ [_M],
1947
+ [0]
1948
+ ];
1949
+ n0_registry.registerError(CloudWatchLogsDeliveryUnavailableException$, CloudWatchLogsDeliveryUnavailableException);
1950
+ var ConcurrentModificationException$ = [-3, n0, _CME,
1951
+ { [_aQE]: [`ConcurrentModification`, 400], [_e]: _c, [_hE]: 400 },
1952
+ [_M],
1953
+ [0]
1954
+ ];
1955
+ n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
1956
+ var ConflictException$ = [-3, n0, _CE,
1957
+ { [_aQE]: [`ConflictException`, 409], [_e]: _c, [_hE]: 409 },
1958
+ [_M],
1959
+ [0]
1960
+ ];
1961
+ n0_registry.registerError(ConflictException$, ConflictException);
1962
+ var DelegatedAdminAccountLimitExceededException$ = [-3, n0, _DAALEE,
1963
+ { [_aQE]: [`DelegatedAdminAccountLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
1964
+ [_M],
1965
+ [0]
1966
+ ];
1967
+ n0_registry.registerError(DelegatedAdminAccountLimitExceededException$, DelegatedAdminAccountLimitExceededException);
1968
+ var EventDataStoreAlreadyExistsException$ = [-3, n0, _EDSAEE,
1969
+ { [_aQE]: [`EventDataStoreAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
1970
+ [_M],
1971
+ [0]
1972
+ ];
1973
+ n0_registry.registerError(EventDataStoreAlreadyExistsException$, EventDataStoreAlreadyExistsException);
1974
+ var EventDataStoreARNInvalidException$ = [-3, n0, _EDSARNIE,
1975
+ { [_aQE]: [`EventDataStoreARNInvalid`, 400], [_e]: _c, [_hE]: 400 },
1976
+ [_M],
1977
+ [0]
1978
+ ];
1979
+ n0_registry.registerError(EventDataStoreARNInvalidException$, EventDataStoreARNInvalidException);
1980
+ var EventDataStoreFederationEnabledException$ = [-3, n0, _EDSFEE,
1981
+ { [_aQE]: [`EventDataStoreFederationEnabled`, 400], [_e]: _c, [_hE]: 400 },
1982
+ [_M],
1983
+ [0]
1984
+ ];
1985
+ n0_registry.registerError(EventDataStoreFederationEnabledException$, EventDataStoreFederationEnabledException);
1986
+ var EventDataStoreHasOngoingImportException$ = [-3, n0, _EDSHOIE,
1987
+ { [_aQE]: [`EventDataStoreHasOngoingImport`, 400], [_e]: _c, [_hE]: 400 },
1988
+ [_M],
1989
+ [0]
1990
+ ];
1991
+ n0_registry.registerError(EventDataStoreHasOngoingImportException$, EventDataStoreHasOngoingImportException);
1992
+ var EventDataStoreMaxLimitExceededException$ = [-3, n0, _EDSMLEE,
1993
+ { [_aQE]: [`EventDataStoreMaxLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
1994
+ [_M],
1995
+ [0]
1996
+ ];
1997
+ n0_registry.registerError(EventDataStoreMaxLimitExceededException$, EventDataStoreMaxLimitExceededException);
1998
+ var EventDataStoreNotFoundException$ = [-3, n0, _EDSNFE,
1999
+ { [_aQE]: [`EventDataStoreNotFound`, 404], [_e]: _c, [_hE]: 404 },
2000
+ [_M],
2001
+ [0]
2002
+ ];
2003
+ n0_registry.registerError(EventDataStoreNotFoundException$, EventDataStoreNotFoundException);
2004
+ var EventDataStoreTerminationProtectedException$ = [-3, n0, _EDSTPE,
2005
+ { [_aQE]: [`EventDataStoreTerminationProtectedException`, 400], [_e]: _c, [_hE]: 400 },
2006
+ [_M],
2007
+ [0]
2008
+ ];
2009
+ n0_registry.registerError(EventDataStoreTerminationProtectedException$, EventDataStoreTerminationProtectedException);
2010
+ var GenerateResponseException$ = [-3, n0, _GRE,
2011
+ { [_aQE]: [`GenerateResponse`, 400], [_e]: _c, [_hE]: 400 },
2012
+ [_M],
2013
+ [0]
2014
+ ];
2015
+ n0_registry.registerError(GenerateResponseException$, GenerateResponseException);
2016
+ var ImportNotFoundException$ = [-3, n0, _INFE,
2017
+ { [_aQE]: [`ImportNotFound`, 404], [_e]: _c, [_hE]: 404 },
2018
+ [_M],
2019
+ [0]
2020
+ ];
2021
+ n0_registry.registerError(ImportNotFoundException$, ImportNotFoundException);
2022
+ var InactiveEventDataStoreException$ = [-3, n0, _IEDSE,
2023
+ { [_aQE]: [`InactiveEventDataStore`, 400], [_e]: _c, [_hE]: 400 },
2024
+ [_M],
2025
+ [0]
2026
+ ];
2027
+ n0_registry.registerError(InactiveEventDataStoreException$, InactiveEventDataStoreException);
2028
+ var InactiveQueryException$ = [-3, n0, _IQE,
2029
+ { [_aQE]: [`InactiveQuery`, 400], [_e]: _c, [_hE]: 400 },
2030
+ [_M],
2031
+ [0]
2032
+ ];
2033
+ n0_registry.registerError(InactiveQueryException$, InactiveQueryException);
2034
+ var InsightNotEnabledException$ = [-3, n0, _INEE,
2035
+ { [_aQE]: [`InsightNotEnabled`, 400], [_e]: _c, [_hE]: 400 },
2036
+ [_M],
2037
+ [0]
2038
+ ];
2039
+ n0_registry.registerError(InsightNotEnabledException$, InsightNotEnabledException);
2040
+ var InsufficientDependencyServiceAccessPermissionException$ = [-3, n0, _IDSAPE,
2041
+ { [_aQE]: [`InsufficientDependencyServiceAccessPermission`, 400], [_e]: _c, [_hE]: 400 },
2042
+ [_M],
2043
+ [0]
2044
+ ];
2045
+ n0_registry.registerError(InsufficientDependencyServiceAccessPermissionException$, InsufficientDependencyServiceAccessPermissionException);
2046
+ var InsufficientEncryptionPolicyException$ = [-3, n0, _IEPE,
2047
+ { [_aQE]: [`InsufficientEncryptionPolicy`, 400], [_e]: _c, [_hE]: 400 },
2048
+ [_M],
2049
+ [0]
2050
+ ];
2051
+ n0_registry.registerError(InsufficientEncryptionPolicyException$, InsufficientEncryptionPolicyException);
2052
+ var InsufficientIAMAccessPermissionException$ = [-3, n0, _IIAMAPE,
2053
+ { [_aQE]: [`InsufficientIAMAccessPermission`, 400], [_e]: _c, [_hE]: 400 },
2054
+ [_M],
2055
+ [0]
2056
+ ];
2057
+ n0_registry.registerError(InsufficientIAMAccessPermissionException$, InsufficientIAMAccessPermissionException);
2058
+ var InsufficientS3BucketPolicyException$ = [-3, n0, _ISBPE,
2059
+ { [_aQE]: [`InsufficientS3BucketPolicy`, 403], [_e]: _c, [_hE]: 403 },
2060
+ [_M],
2061
+ [0]
2062
+ ];
2063
+ n0_registry.registerError(InsufficientS3BucketPolicyException$, InsufficientS3BucketPolicyException);
2064
+ var InsufficientSnsTopicPolicyException$ = [-3, n0, _ISTPE,
2065
+ { [_aQE]: [`InsufficientSnsTopicPolicy`, 403], [_e]: _c, [_hE]: 403 },
2066
+ [_M],
2067
+ [0]
2068
+ ];
2069
+ n0_registry.registerError(InsufficientSnsTopicPolicyException$, InsufficientSnsTopicPolicyException);
2070
+ var InvalidCloudWatchLogsLogGroupArnException$ = [-3, n0, _ICWLLGAE,
2071
+ { [_aQE]: [`InvalidCloudWatchLogsLogGroupArn`, 400], [_e]: _c, [_hE]: 400 },
2072
+ [_M],
2073
+ [0]
2074
+ ];
2075
+ n0_registry.registerError(InvalidCloudWatchLogsLogGroupArnException$, InvalidCloudWatchLogsLogGroupArnException);
2076
+ var InvalidCloudWatchLogsRoleArnException$ = [-3, n0, _ICWLRAE,
2077
+ { [_aQE]: [`InvalidCloudWatchLogsRoleArn`, 400], [_e]: _c, [_hE]: 400 },
2078
+ [_M],
2079
+ [0]
2080
+ ];
2081
+ n0_registry.registerError(InvalidCloudWatchLogsRoleArnException$, InvalidCloudWatchLogsRoleArnException);
2082
+ var InvalidDateRangeException$ = [-3, n0, _IDRE,
2083
+ { [_aQE]: [`InvalidDateRange`, 400], [_e]: _c, [_hE]: 400 },
2084
+ [_M],
2085
+ [0]
2086
+ ];
2087
+ n0_registry.registerError(InvalidDateRangeException$, InvalidDateRangeException);
2088
+ var InvalidEventCategoryException$ = [-3, n0, _IECE,
2089
+ { [_aQE]: [`InvalidEventCategory`, 400], [_e]: _c, [_hE]: 400 },
2090
+ [_M],
2091
+ [0]
2092
+ ];
2093
+ n0_registry.registerError(InvalidEventCategoryException$, InvalidEventCategoryException);
2094
+ var InvalidEventDataStoreCategoryException$ = [-3, n0, _IEDSCE,
2095
+ { [_aQE]: [`InvalidEventDataStoreCategory`, 400], [_e]: _c, [_hE]: 400 },
2096
+ [_M],
2097
+ [0]
2098
+ ];
2099
+ n0_registry.registerError(InvalidEventDataStoreCategoryException$, InvalidEventDataStoreCategoryException);
2100
+ var InvalidEventDataStoreStatusException$ = [-3, n0, _IEDSSE,
2101
+ { [_aQE]: [`InvalidEventDataStoreStatus`, 400], [_e]: _c, [_hE]: 400 },
2102
+ [_M],
2103
+ [0]
2104
+ ];
2105
+ n0_registry.registerError(InvalidEventDataStoreStatusException$, InvalidEventDataStoreStatusException);
2106
+ var InvalidEventSelectorsException$ = [-3, n0, _IESE,
2107
+ { [_aQE]: [`InvalidEventSelectors`, 400], [_e]: _c, [_hE]: 400 },
2108
+ [_M],
2109
+ [0]
2110
+ ];
2111
+ n0_registry.registerError(InvalidEventSelectorsException$, InvalidEventSelectorsException);
2112
+ var InvalidHomeRegionException$ = [-3, n0, _IHRE,
2113
+ { [_aQE]: [`InvalidHomeRegion`, 400], [_e]: _c, [_hE]: 400 },
2114
+ [_M],
2115
+ [0]
2116
+ ];
2117
+ n0_registry.registerError(InvalidHomeRegionException$, InvalidHomeRegionException);
2118
+ var InvalidImportSourceException$ = [-3, n0, _IISE,
2119
+ { [_aQE]: [`InvalidImportSource`, 400], [_e]: _c, [_hE]: 400 },
2120
+ [_M],
2121
+ [0]
2122
+ ];
2123
+ n0_registry.registerError(InvalidImportSourceException$, InvalidImportSourceException);
2124
+ var InvalidInsightSelectorsException$ = [-3, n0, _IISEn,
2125
+ { [_aQE]: [`InvalidInsightSelectors`, 400], [_e]: _c, [_hE]: 400 },
2126
+ [_M],
2127
+ [0]
2128
+ ];
2129
+ n0_registry.registerError(InvalidInsightSelectorsException$, InvalidInsightSelectorsException);
2130
+ var InvalidKmsKeyIdException$ = [-3, n0, _IKKIE,
2131
+ { [_aQE]: [`InvalidKmsKeyId`, 400], [_e]: _c, [_hE]: 400 },
2132
+ [_M],
2133
+ [0]
2134
+ ];
2135
+ n0_registry.registerError(InvalidKmsKeyIdException$, InvalidKmsKeyIdException);
2136
+ var InvalidLookupAttributesException$ = [-3, n0, _ILAE,
2137
+ { [_aQE]: [`InvalidLookupAttributes`, 400], [_e]: _c, [_hE]: 400 },
2138
+ [_M],
2139
+ [0]
2140
+ ];
2141
+ n0_registry.registerError(InvalidLookupAttributesException$, InvalidLookupAttributesException);
2142
+ var InvalidMaxResultsException$ = [-3, n0, _IMRE,
2143
+ { [_aQE]: [`InvalidMaxResults`, 400], [_e]: _c, [_hE]: 400 },
2144
+ [_M],
2145
+ [0]
2146
+ ];
2147
+ n0_registry.registerError(InvalidMaxResultsException$, InvalidMaxResultsException);
2148
+ var InvalidNextTokenException$ = [-3, n0, _INTE,
2149
+ { [_aQE]: [`InvalidNextToken`, 400], [_e]: _c, [_hE]: 400 },
2150
+ [_M],
2151
+ [0]
2152
+ ];
2153
+ n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
2154
+ var InvalidParameterCombinationException$ = [-3, n0, _IPCE,
2155
+ { [_aQE]: [`InvalidParameterCombinationError`, 400], [_e]: _c, [_hE]: 400 },
2156
+ [_M],
2157
+ [0]
2158
+ ];
2159
+ n0_registry.registerError(InvalidParameterCombinationException$, InvalidParameterCombinationException);
2160
+ var InvalidParameterException$ = [-3, n0, _IPE,
2161
+ { [_aQE]: [`InvalidParameter`, 400], [_e]: _c, [_hE]: 400 },
2162
+ [_M],
2163
+ [0]
2164
+ ];
2165
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
2166
+ var InvalidQueryStatementException$ = [-3, n0, _IQSE,
2167
+ { [_aQE]: [`InvalidQueryStatement`, 400], [_e]: _c, [_hE]: 400 },
2168
+ [_M],
2169
+ [0]
2170
+ ];
2171
+ n0_registry.registerError(InvalidQueryStatementException$, InvalidQueryStatementException);
2172
+ var InvalidQueryStatusException$ = [-3, n0, _IQSEn,
2173
+ { [_aQE]: [`InvalidQueryStatus`, 400], [_e]: _c, [_hE]: 400 },
2174
+ [_M],
2175
+ [0]
2176
+ ];
2177
+ n0_registry.registerError(InvalidQueryStatusException$, InvalidQueryStatusException);
2178
+ var InvalidS3BucketNameException$ = [-3, n0, _ISBNE,
2179
+ { [_aQE]: [`InvalidS3BucketName`, 400], [_e]: _c, [_hE]: 400 },
2180
+ [_M],
2181
+ [0]
2182
+ ];
2183
+ n0_registry.registerError(InvalidS3BucketNameException$, InvalidS3BucketNameException);
2184
+ var InvalidS3PrefixException$ = [-3, n0, _ISPE,
2185
+ { [_aQE]: [`InvalidS3Prefix`, 400], [_e]: _c, [_hE]: 400 },
2186
+ [_M],
2187
+ [0]
2188
+ ];
2189
+ n0_registry.registerError(InvalidS3PrefixException$, InvalidS3PrefixException);
2190
+ var InvalidSnsTopicNameException$ = [-3, n0, _ISTNE,
2191
+ { [_aQE]: [`InvalidSnsTopicName`, 400], [_e]: _c, [_hE]: 400 },
2192
+ [_M],
2193
+ [0]
2194
+ ];
2195
+ n0_registry.registerError(InvalidSnsTopicNameException$, InvalidSnsTopicNameException);
2196
+ var InvalidSourceException$ = [-3, n0, _ISE,
2197
+ { [_aQE]: [`InvalidSource`, 400], [_e]: _c, [_hE]: 400 },
2198
+ [_M],
2199
+ [0]
2200
+ ];
2201
+ n0_registry.registerError(InvalidSourceException$, InvalidSourceException);
2202
+ var InvalidTagParameterException$ = [-3, n0, _ITPE,
2203
+ { [_aQE]: [`InvalidTagParameter`, 400], [_e]: _c, [_hE]: 400 },
2204
+ [_M],
2205
+ [0]
2206
+ ];
2207
+ n0_registry.registerError(InvalidTagParameterException$, InvalidTagParameterException);
2208
+ var InvalidTimeRangeException$ = [-3, n0, _ITRE,
2209
+ { [_aQE]: [`InvalidTimeRange`, 400], [_e]: _c, [_hE]: 400 },
2210
+ [_M],
2211
+ [0]
2212
+ ];
2213
+ n0_registry.registerError(InvalidTimeRangeException$, InvalidTimeRangeException);
2214
+ var InvalidTokenException$ = [-3, n0, _ITE,
2215
+ { [_aQE]: [`InvalidToken`, 400], [_e]: _c, [_hE]: 400 },
2216
+ [_M],
2217
+ [0]
2218
+ ];
2219
+ n0_registry.registerError(InvalidTokenException$, InvalidTokenException);
2220
+ var InvalidTrailNameException$ = [-3, n0, _ITNE,
2221
+ { [_aQE]: [`InvalidTrailName`, 400], [_e]: _c, [_hE]: 400 },
2222
+ [_M],
2223
+ [0]
2224
+ ];
2225
+ n0_registry.registerError(InvalidTrailNameException$, InvalidTrailNameException);
2226
+ var KmsException$ = [-3, n0, _KE,
2227
+ { [_aQE]: [`KmsException`, 400], [_e]: _c, [_hE]: 400 },
2228
+ [_M],
2229
+ [0]
2230
+ ];
2231
+ n0_registry.registerError(KmsException$, KmsException);
2232
+ var KmsKeyDisabledException$ = [-3, n0, _KKDE,
2233
+ { [_aQE]: [`KmsKeyDisabled`, 400], [_e]: _c, [_hE]: 400 },
2234
+ [_M],
2235
+ [0]
2236
+ ];
2237
+ n0_registry.registerError(KmsKeyDisabledException$, KmsKeyDisabledException);
2238
+ var KmsKeyNotFoundException$ = [-3, n0, _KKNFE,
2239
+ { [_aQE]: [`KmsKeyNotFound`, 400], [_e]: _c, [_hE]: 400 },
2240
+ [_M],
2241
+ [0]
2242
+ ];
2243
+ n0_registry.registerError(KmsKeyNotFoundException$, KmsKeyNotFoundException);
2244
+ var MaxConcurrentQueriesException$ = [-3, n0, _MCQE,
2245
+ { [_aQE]: [`MaxConcurrentQueries`, 429], [_e]: _c, [_hE]: 429 },
2246
+ [_M],
2247
+ [0]
2248
+ ];
2249
+ n0_registry.registerError(MaxConcurrentQueriesException$, MaxConcurrentQueriesException);
2250
+ var MaximumNumberOfTrailsExceededException$ = [-3, n0, _MNOTEE,
2251
+ { [_aQE]: [`MaximumNumberOfTrailsExceeded`, 403], [_e]: _c, [_hE]: 403 },
2252
+ [_M],
2253
+ [0]
2254
+ ];
2255
+ n0_registry.registerError(MaximumNumberOfTrailsExceededException$, MaximumNumberOfTrailsExceededException);
2256
+ var NoManagementAccountSLRExistsException$ = [-3, n0, _NMASLREE,
2257
+ { [_aQE]: [`NoManagementAccountSLRExists`, 403], [_e]: _c, [_hE]: 403 },
2258
+ [_M],
2259
+ [0]
2260
+ ];
2261
+ n0_registry.registerError(NoManagementAccountSLRExistsException$, NoManagementAccountSLRExistsException);
2262
+ var NotOrganizationManagementAccountException$ = [-3, n0, _NOMAE,
2263
+ { [_aQE]: [`NotOrganizationManagementAccount`, 403], [_e]: _c, [_hE]: 403 },
2264
+ [_M],
2265
+ [0]
2266
+ ];
2267
+ n0_registry.registerError(NotOrganizationManagementAccountException$, NotOrganizationManagementAccountException);
2268
+ var NotOrganizationMasterAccountException$ = [-3, n0, _NOMAEo,
2269
+ { [_aQE]: [`NotOrganizationMasterAccount`, 400], [_e]: _c, [_hE]: 400 },
2270
+ [_M],
2271
+ [0]
2272
+ ];
2273
+ n0_registry.registerError(NotOrganizationMasterAccountException$, NotOrganizationMasterAccountException);
2274
+ var OperationNotPermittedException$ = [-3, n0, _ONPE,
2275
+ { [_aQE]: [`OperationNotPermitted`, 400], [_e]: _c, [_hE]: 400 },
2276
+ [_M],
2277
+ [0]
2278
+ ];
2279
+ n0_registry.registerError(OperationNotPermittedException$, OperationNotPermittedException);
2280
+ var OrganizationNotInAllFeaturesModeException$ = [-3, n0, _ONIAFME,
2281
+ { [_aQE]: [`OrganizationNotInAllFeaturesMode`, 400], [_e]: _c, [_hE]: 400 },
2282
+ [_M],
2283
+ [0]
2284
+ ];
2285
+ n0_registry.registerError(OrganizationNotInAllFeaturesModeException$, OrganizationNotInAllFeaturesModeException);
2286
+ var OrganizationsNotInUseException$ = [-3, n0, _ONIUE,
2287
+ { [_aQE]: [`OrganizationsNotInUse`, 404], [_e]: _c, [_hE]: 404 },
2288
+ [_M],
2289
+ [0]
2290
+ ];
2291
+ n0_registry.registerError(OrganizationsNotInUseException$, OrganizationsNotInUseException);
2292
+ var QueryIdNotFoundException$ = [-3, n0, _QINFE,
2293
+ { [_aQE]: [`QueryIdNotFound`, 404], [_e]: _c, [_hE]: 404 },
2294
+ [_M],
2295
+ [0]
2296
+ ];
2297
+ n0_registry.registerError(QueryIdNotFoundException$, QueryIdNotFoundException);
2298
+ var ResourceARNNotValidException$ = [-3, n0, _RARNNVE,
2299
+ { [_aQE]: [`ResourceARNNotValid`, 400], [_e]: _c, [_hE]: 400 },
2300
+ [_M],
2301
+ [0]
2302
+ ];
2303
+ n0_registry.registerError(ResourceARNNotValidException$, ResourceARNNotValidException);
2304
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
2305
+ { [_aQE]: [`ResourceNotFound`, 400], [_e]: _c, [_hE]: 400 },
2306
+ [_M],
2307
+ [0]
2308
+ ];
2309
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
2310
+ var ResourcePolicyNotFoundException$ = [-3, n0, _RPNFE,
2311
+ { [_aQE]: [`ResourcePolicyNotFound`, 404], [_e]: _c, [_hE]: 404 },
2312
+ [_M],
2313
+ [0]
2314
+ ];
2315
+ n0_registry.registerError(ResourcePolicyNotFoundException$, ResourcePolicyNotFoundException);
2316
+ var ResourcePolicyNotValidException$ = [-3, n0, _RPNVE,
2317
+ { [_aQE]: [`ResourcePolicyNotValid`, 400], [_e]: _c, [_hE]: 400 },
2318
+ [_M],
2319
+ [0]
2320
+ ];
2321
+ n0_registry.registerError(ResourcePolicyNotValidException$, ResourcePolicyNotValidException);
2322
+ var ResourceTypeNotSupportedException$ = [-3, n0, _RTNSE,
2323
+ { [_aQE]: [`ResourceTypeNotSupported`, 400], [_e]: _c, [_hE]: 400 },
2324
+ [_M],
2325
+ [0]
2326
+ ];
2327
+ n0_registry.registerError(ResourceTypeNotSupportedException$, ResourceTypeNotSupportedException);
2328
+ var S3BucketDoesNotExistException$ = [-3, n0, _SBDNEE,
2329
+ { [_aQE]: [`S3BucketDoesNotExist`, 404], [_e]: _c, [_hE]: 404 },
2330
+ [_M],
2331
+ [0]
2332
+ ];
2333
+ n0_registry.registerError(S3BucketDoesNotExistException$, S3BucketDoesNotExistException);
2334
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
2335
+ { [_aQE]: [`ServiceQuotaExceeded`, 400], [_e]: _c, [_hE]: 400 },
2336
+ [_M],
2337
+ [0]
2338
+ ];
2339
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
2340
+ var TagsLimitExceededException$ = [-3, n0, _TLEE,
2341
+ { [_aQE]: [`TagsLimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
2342
+ [_M],
2343
+ [0]
2344
+ ];
2345
+ n0_registry.registerError(TagsLimitExceededException$, TagsLimitExceededException);
2346
+ var ThrottlingException$ = [-3, n0, _TE,
2347
+ { [_aQE]: [`ThrottlingException`, 429], [_e]: _c, [_hE]: 429 },
2348
+ [_M],
2349
+ [0]
2350
+ ];
2351
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
2352
+ var TrailAlreadyExistsException$ = [-3, n0, _TAEE,
2353
+ { [_aQE]: [`TrailAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
2354
+ [_M],
2355
+ [0]
2356
+ ];
2357
+ n0_registry.registerError(TrailAlreadyExistsException$, TrailAlreadyExistsException);
2358
+ var TrailNotFoundException$ = [-3, n0, _TNFE,
2359
+ { [_aQE]: [`TrailNotFound`, 404], [_e]: _c, [_hE]: 404 },
2360
+ [_M],
2361
+ [0]
2362
+ ];
2363
+ n0_registry.registerError(TrailNotFoundException$, TrailNotFoundException);
2364
+ var TrailNotProvidedException$ = [-3, n0, _TNPE,
2365
+ { [_aQE]: [`TrailNotProvided`, 404], [_e]: _c, [_hE]: 404 },
2366
+ [_M],
2367
+ [0]
2368
+ ];
2369
+ n0_registry.registerError(TrailNotProvidedException$, TrailNotProvidedException);
2370
+ var UnsupportedOperationException$ = [-3, n0, _UOE,
2371
+ { [_aQE]: [`UnsupportedOperation`, 400], [_e]: _c, [_hE]: 400 },
2372
+ [_M],
2373
+ [0]
2374
+ ];
2375
+ n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
2376
+ const errorTypeRegistries = [
2377
+ _s_registry,
2378
+ n0_registry,
2379
+ ];
2380
+ var AddTagsRequest$ = [3, n0, _ATR,
2381
+ 0,
2382
+ [_RI, _TL],
2383
+ [0, () => TagsList], 2
2384
+ ];
2385
+ var AddTagsResponse$ = [3, n0, _ATRd,
2386
+ 0,
2387
+ [],
2388
+ []
2389
+ ];
2390
+ var AdvancedEventSelector$ = [3, n0, _AES,
2391
+ 0,
2392
+ [_FS, _N],
2393
+ [() => AdvancedFieldSelectors, 0], 1
2394
+ ];
2395
+ var AdvancedFieldSelector$ = [3, n0, _AFS,
2396
+ 0,
2397
+ [_F, _E, _SW, _EW, _NE, _NSW, _NEW],
2398
+ [0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0], 1
2399
+ ];
2400
+ var AggregationConfiguration$ = [3, n0, _AC,
2401
+ 0,
2402
+ [_T, _EC],
2403
+ [64 | 0, 0], 2
2404
+ ];
2405
+ var CancelQueryRequest$ = [3, n0, _CQR,
2406
+ 0,
2407
+ [_QI, _EDS, _EDSOAI],
2408
+ [0, 0, 0], 1
2409
+ ];
2410
+ var CancelQueryResponse$ = [3, n0, _CQRa,
2411
+ 0,
2412
+ [_QI, _QS, _EDSOAI],
2413
+ [0, 0, 0], 2
2414
+ ];
2415
+ var Channel$ = [3, n0, _C,
2416
+ 0,
2417
+ [_CA, _N],
2418
+ [0, 0]
2419
+ ];
2420
+ var ContextKeySelector$ = [3, n0, _CKS,
2421
+ 0,
2422
+ [_Ty, _E],
2423
+ [0, 64 | 0], 2
2424
+ ];
2425
+ var CreateChannelRequest$ = [3, n0, _CCR,
2426
+ 0,
2427
+ [_N, _S, _D, _Ta],
2428
+ [0, 0, () => Destinations, () => TagsList], 3
2429
+ ];
2430
+ var CreateChannelResponse$ = [3, n0, _CCRr,
2431
+ 0,
2432
+ [_CA, _N, _S, _D, _Ta],
2433
+ [0, 0, 0, () => Destinations, () => TagsList]
2434
+ ];
2435
+ var CreateDashboardRequest$ = [3, n0, _CDR,
2436
+ 0,
2437
+ [_N, _RS, _TL, _TPE, _W],
2438
+ [0, () => RefreshSchedule$, () => TagsList, 2, () => RequestWidgetList], 1
2439
+ ];
2440
+ var CreateDashboardResponse$ = [3, n0, _CDRr,
2441
+ 0,
2442
+ [_DA, _N, _Ty, _W, _TL, _RS, _TPE],
2443
+ [0, 0, 0, () => WidgetList, () => TagsList, () => RefreshSchedule$, 2]
2444
+ ];
2445
+ var CreateEventDataStoreRequest$ = [3, n0, _CEDSR,
2446
+ 0,
2447
+ [_N, _AESd, _MRE, _OE, _RP, _TPE, _TL, _KKI, _SI, _BM],
2448
+ [0, () => AdvancedEventSelectors, 2, 2, 1, 2, () => TagsList, 0, 2, 0], 1
2449
+ ];
2450
+ var CreateEventDataStoreResponse$ = [3, n0, _CEDSRr,
2451
+ 0,
2452
+ [_EDSA, _N, _St, _AESd, _MRE, _OE, _RP, _TPE, _TL, _CT, _UT, _KKI, _BM],
2453
+ [0, 0, 0, () => AdvancedEventSelectors, 2, 2, 1, 2, () => TagsList, 4, 4, 0, 0]
2454
+ ];
2455
+ var CreateTrailRequest$ = [3, n0, _CTR,
2456
+ 0,
2457
+ [_N, _SBN, _SKP, _STN, _IGSE, _IMRT, _ELFV, _CWLLGA, _CWLRA, _KKI, _IOT, _TL],
2458
+ [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2, () => TagsList], 2
2459
+ ];
2460
+ var CreateTrailResponse$ = [3, n0, _CTRr,
2461
+ 0,
2462
+ [_N, _SBN, _SKP, _STN, _STARN, _IGSE, _IMRT, _TARN, _LFVE, _CWLLGA, _CWLRA, _KKI, _IOT],
2463
+ [0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 2]
2464
+ ];
2465
+ var DashboardDetail$ = [3, n0, _DD,
2466
+ 0,
2467
+ [_DA, _Ty],
2468
+ [0, 0]
2469
+ ];
2470
+ var DataResource$ = [3, n0, _DR,
2471
+ 0,
2472
+ [_Ty, _V],
2473
+ [0, 64 | 0]
2474
+ ];
2475
+ var DeleteChannelRequest$ = [3, n0, _DCR,
2476
+ 0,
2477
+ [_C],
2478
+ [0], 1
2479
+ ];
2480
+ var DeleteChannelResponse$ = [3, n0, _DCRe,
2481
+ 0,
2482
+ [],
2483
+ []
2484
+ ];
2485
+ var DeleteDashboardRequest$ = [3, n0, _DDR,
2486
+ 0,
2487
+ [_DI],
2488
+ [0], 1
2489
+ ];
2490
+ var DeleteDashboardResponse$ = [3, n0, _DDRe,
2491
+ 0,
2492
+ [],
2493
+ []
2494
+ ];
2495
+ var DeleteEventDataStoreRequest$ = [3, n0, _DEDSR,
2496
+ 0,
2497
+ [_EDS],
2498
+ [0], 1
2499
+ ];
2500
+ var DeleteEventDataStoreResponse$ = [3, n0, _DEDSRe,
2501
+ 0,
2502
+ [],
2503
+ []
2504
+ ];
2505
+ var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
2506
+ 0,
2507
+ [_RA],
2508
+ [0], 1
2509
+ ];
2510
+ var DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
2511
+ 0,
2512
+ [],
2513
+ []
2514
+ ];
2515
+ var DeleteTrailRequest$ = [3, n0, _DTR,
2516
+ 0,
2517
+ [_N],
2518
+ [0], 1
2519
+ ];
2520
+ var DeleteTrailResponse$ = [3, n0, _DTRe,
2521
+ 0,
2522
+ [],
2523
+ []
2524
+ ];
2525
+ var DeregisterOrganizationDelegatedAdminRequest$ = [3, n0, _DODAR,
2526
+ 0,
2527
+ [_DAAI],
2528
+ [0], 1
2529
+ ];
2530
+ var DeregisterOrganizationDelegatedAdminResponse$ = [3, n0, _DODARe,
2531
+ 0,
2532
+ [],
2533
+ []
2534
+ ];
2535
+ var DescribeQueryRequest$ = [3, n0, _DQR,
2536
+ 0,
2537
+ [_EDS, _QI, _QA, _RIe, _EDSOAI],
2538
+ [0, 0, 0, 0, 0]
2539
+ ];
2540
+ var DescribeQueryResponse$ = [3, n0, _DQRe,
2541
+ 0,
2542
+ [_QI, _QSu, _QS, _QSue, _EM, _DSU, _DS, _P, _EDSOAI],
2543
+ [0, 0, 0, () => QueryStatisticsForDescribeQuery$, 0, 0, 0, 0, 0]
2544
+ ];
2545
+ var DescribeTrailsRequest$ = [3, n0, _DTRes,
2546
+ 0,
2547
+ [_tNL, _iST],
2548
+ [64 | 0, 2]
2549
+ ];
2550
+ var DescribeTrailsResponse$ = [3, n0, _DTResc,
2551
+ 0,
2552
+ [_tL],
2553
+ [() => TrailList]
2554
+ ];
2555
+ var Destination$ = [3, n0, _De,
2556
+ 0,
2557
+ [_Ty, _L],
2558
+ [0, 0], 2
2559
+ ];
2560
+ var DisableFederationRequest$ = [3, n0, _DFR,
2561
+ 0,
2562
+ [_EDS],
2563
+ [0], 1
2564
+ ];
2565
+ var DisableFederationResponse$ = [3, n0, _DFRi,
2566
+ 0,
2567
+ [_EDSA, _FSe],
2568
+ [0, 0]
2569
+ ];
2570
+ var EnableFederationRequest$ = [3, n0, _EFR,
2571
+ 0,
2572
+ [_EDS, _FRA],
2573
+ [0, 0], 2
2574
+ ];
2575
+ var EnableFederationResponse$ = [3, n0, _EFRn,
2576
+ 0,
2577
+ [_EDSA, _FSe, _FRA],
2578
+ [0, 0, 0]
2579
+ ];
2580
+ var Event$ = [3, n0, _Ev,
2581
+ 0,
2582
+ [_EI, _EN, _RO, _AKI, _ET, _ES, _U, _R, _CTE],
2583
+ [0, 0, 0, 0, 4, 0, 0, () => ResourceList, 0]
2584
+ ];
2585
+ var EventDataStore$ = [3, n0, _EDS,
2586
+ 0,
2587
+ [_EDSA, _N, _TPE, _St, _AESd, _MRE, _OE, _RP, _CT, _UT],
2588
+ [0, 0, 2, 0, () => AdvancedEventSelectors, 2, 2, 1, 4, 4]
2589
+ ];
2590
+ var EventSelector$ = [3, n0, _ESv,
2591
+ 0,
2592
+ [_RWT, _IME, _DRa, _EMES],
2593
+ [0, 2, () => DataResources, 64 | 0]
2594
+ ];
2595
+ var GenerateQueryRequest$ = [3, n0, _GQR,
2596
+ 0,
2597
+ [_EDSv, _P],
2598
+ [64 | 0, 0], 2
2599
+ ];
2600
+ var GenerateQueryResponse$ = [3, n0, _GQRe,
2601
+ 0,
2602
+ [_QSuer, _QA, _EDSOAI],
2603
+ [0, 0, 0]
2604
+ ];
2605
+ var GetChannelRequest$ = [3, n0, _GCR,
2606
+ 0,
2607
+ [_C],
2608
+ [0], 1
2609
+ ];
2610
+ var GetChannelResponse$ = [3, n0, _GCRe,
2611
+ 0,
2612
+ [_CA, _N, _S, _SC, _D, _IS],
2613
+ [0, 0, 0, () => SourceConfig$, () => Destinations, () => IngestionStatus$]
2614
+ ];
2615
+ var GetDashboardRequest$ = [3, n0, _GDR,
2616
+ 0,
2617
+ [_DI],
2618
+ [0], 1
2619
+ ];
2620
+ var GetDashboardResponse$ = [3, n0, _GDRe,
2621
+ 0,
2622
+ [_DA, _Ty, _St, _W, _RS, _CT, _UT, _LRI, _LRFR, _TPE],
2623
+ [0, 0, 0, () => WidgetList, () => RefreshSchedule$, 4, 4, 0, 0, 2]
2624
+ ];
2625
+ var GetEventConfigurationRequest$ = [3, n0, _GECR,
2626
+ 0,
2627
+ [_TN, _EDS],
2628
+ [0, 0]
2629
+ ];
2630
+ var GetEventConfigurationResponse$ = [3, n0, _GECRe,
2631
+ 0,
2632
+ [_TARN, _EDSA, _MES, _CKSo, _ACg],
2633
+ [0, 0, 0, () => ContextKeySelectors, () => AggregationConfigurations]
2634
+ ];
2635
+ var GetEventDataStoreRequest$ = [3, n0, _GEDSR,
2636
+ 0,
2637
+ [_EDS],
2638
+ [0], 1
2639
+ ];
2640
+ var GetEventDataStoreResponse$ = [3, n0, _GEDSRe,
2641
+ 0,
2642
+ [_EDSA, _N, _St, _AESd, _MRE, _OE, _RP, _TPE, _CT, _UT, _KKI, _BM, _FSe, _FRA, _PK],
2643
+ [0, 0, 0, () => AdvancedEventSelectors, 2, 2, 1, 2, 4, 4, 0, 0, 0, 0, () => PartitionKeyList]
2644
+ ];
2645
+ var GetEventSelectorsRequest$ = [3, n0, _GESR,
2646
+ 0,
2647
+ [_TN],
2648
+ [0], 1
2649
+ ];
2650
+ var GetEventSelectorsResponse$ = [3, n0, _GESRe,
2651
+ 0,
2652
+ [_TARN, _ESve, _AESd],
2653
+ [0, () => EventSelectors, () => AdvancedEventSelectors]
2654
+ ];
2655
+ var GetImportRequest$ = [3, n0, _GIR,
2656
+ 0,
2657
+ [_II],
2658
+ [0], 1
2659
+ ];
2660
+ var GetImportResponse$ = [3, n0, _GIRe,
2661
+ 0,
2662
+ [_II, _D, _ISm, _SET, _EET, _ISmp, _CT, _UT, _ISmpo],
2663
+ [0, 64 | 0, () => ImportSource$, 4, 4, 0, 4, 4, () => ImportStatistics$]
2664
+ ];
2665
+ var GetInsightSelectorsRequest$ = [3, n0, _GISR,
2666
+ 0,
2667
+ [_TN, _EDS],
2668
+ [0, 0]
2669
+ ];
2670
+ var GetInsightSelectorsResponse$ = [3, n0, _GISRe,
2671
+ 0,
2672
+ [_TARN, _ISn, _EDSA, _ID],
2673
+ [0, () => InsightSelectors, 0, 0]
2674
+ ];
2675
+ var GetQueryResultsRequest$ = [3, n0, _GQRR,
2676
+ 0,
2677
+ [_QI, _EDS, _NT, _MQR, _EDSOAI],
2678
+ [0, 0, 0, 1, 0], 1
2679
+ ];
2680
+ var GetQueryResultsResponse$ = [3, n0, _GQRRe,
2681
+ 0,
2682
+ [_QS, _QSue, _QRR, _NT, _EM],
2683
+ [0, () => QueryStatistics$, [1, n0, _QRR, 0, [1, n0, _QRRu, 0, 128 | 0]], 0, 0]
2684
+ ];
2685
+ var GetResourcePolicyRequest$ = [3, n0, _GRPR,
2686
+ 0,
2687
+ [_RA],
2688
+ [0], 1
2689
+ ];
2690
+ var GetResourcePolicyResponse$ = [3, n0, _GRPRe,
2691
+ 0,
2692
+ [_RA, _RPe, _DARP],
2693
+ [0, 0, 0]
2694
+ ];
2695
+ var GetTrailRequest$ = [3, n0, _GTR,
2696
+ 0,
2697
+ [_N],
2698
+ [0], 1
2699
+ ];
2700
+ var GetTrailResponse$ = [3, n0, _GTRe,
2701
+ 0,
2702
+ [_Tr],
2703
+ [() => Trail$]
2704
+ ];
2705
+ var GetTrailStatusRequest$ = [3, n0, _GTSR,
2706
+ 0,
2707
+ [_N],
2708
+ [0], 1
2709
+ ];
2710
+ var GetTrailStatusResponse$ = [3, n0, _GTSRe,
2711
+ 0,
2712
+ [_IL, _LDE, _LNE, _LDT, _LNT, _SLT, _SLTt, _LCWLDE, _LCWLDT, _LDDT, _LDDE, _LDAT, _LNAT, _LNAS, _LDAS, _TLS, _TLSi],
2713
+ [2, 0, 0, 4, 4, 4, 4, 0, 4, 4, 0, 0, 0, 0, 0, 0, 0]
2714
+ ];
2715
+ var ImportFailureListItem$ = [3, n0, _IFLI,
2716
+ 0,
2717
+ [_L, _St, _ETr, _EM, _LUT],
2718
+ [0, 0, 0, 0, 4]
2719
+ ];
2720
+ var ImportsListItem$ = [3, n0, _ILI,
2721
+ 0,
2722
+ [_II, _ISmp, _D, _CT, _UT],
2723
+ [0, 0, 64 | 0, 4, 4]
2724
+ ];
2725
+ var ImportSource$ = [3, n0, _ISm,
2726
+ 0,
2727
+ [_S_],
2728
+ [() => S3ImportSource$], 1
2729
+ ];
2730
+ var ImportStatistics$ = [3, n0, _ISmpo,
2731
+ 0,
2732
+ [_PF, _PC, _FC, _ECv, _FE],
2733
+ [1, 1, 1, 1, 1]
2734
+ ];
2735
+ var IngestionStatus$ = [3, n0, _IS,
2736
+ 0,
2737
+ [_LIST, _LISEID, _LIEC, _LIAT, _LIAEID],
2738
+ [4, 0, 0, 4, 0]
2739
+ ];
2740
+ var InsightSelector$ = [3, n0, _ISns,
2741
+ 0,
2742
+ [_IT, _ECve],
2743
+ [0, 64 | 0]
2744
+ ];
2745
+ var ListChannelsRequest$ = [3, n0, _LCR,
2746
+ 0,
2747
+ [_MR, _NT],
2748
+ [1, 0]
2749
+ ];
2750
+ var ListChannelsResponse$ = [3, n0, _LCRi,
2751
+ 0,
2752
+ [_Ch, _NT],
2753
+ [() => Channels, 0]
2754
+ ];
2755
+ var ListDashboardsRequest$ = [3, n0, _LDR,
2756
+ 0,
2757
+ [_NP, _Ty, _NT, _MR],
2758
+ [0, 0, 0, 1]
2759
+ ];
2760
+ var ListDashboardsResponse$ = [3, n0, _LDRi,
2761
+ 0,
2762
+ [_Da, _NT],
2763
+ [() => Dashboards, 0]
2764
+ ];
2765
+ var ListEventDataStoresRequest$ = [3, n0, _LEDSR,
2766
+ 0,
2767
+ [_NT, _MR],
2768
+ [0, 1]
2769
+ ];
2770
+ var ListEventDataStoresResponse$ = [3, n0, _LEDSRi,
2771
+ 0,
2772
+ [_EDSv, _NT],
2773
+ [() => EventDataStores, 0]
2774
+ ];
2775
+ var ListImportFailuresRequest$ = [3, n0, _LIFR,
2776
+ 0,
2777
+ [_II, _MR, _NT],
2778
+ [0, 1, 0], 1
2779
+ ];
2780
+ var ListImportFailuresResponse$ = [3, n0, _LIFRi,
2781
+ 0,
2782
+ [_Fa, _NT],
2783
+ [() => ImportFailureList, 0]
2784
+ ];
2785
+ var ListImportsRequest$ = [3, n0, _LIR,
2786
+ 0,
2787
+ [_MR, _De, _ISmp, _NT],
2788
+ [1, 0, 0, 0]
2789
+ ];
2790
+ var ListImportsResponse$ = [3, n0, _LIRi,
2791
+ 0,
2792
+ [_I, _NT],
2793
+ [() => ImportsList, 0]
2794
+ ];
2795
+ var ListInsightsDataRequest$ = [3, n0, _LIDR,
2796
+ 0,
2797
+ [_ISnsi, _DT, _Di, _ST, _ETn, _MR, _NT],
2798
+ [0, 0, 128 | 0, 4, 4, 1, 0], 2
2799
+ ];
2800
+ var ListInsightsDataResponse$ = [3, n0, _LIDRi,
2801
+ 0,
2802
+ [_Eve, _NT],
2803
+ [() => EventsList, 0]
2804
+ ];
2805
+ var ListInsightsMetricDataRequest$ = [3, n0, _LIMDR,
2806
+ 0,
2807
+ [_ES, _EN, _IT, _TN, _ECr, _ST, _ETn, _Pe, _DT, _MR, _NT],
2808
+ [0, 0, 0, 0, 0, 4, 4, 1, 0, 1, 0], 3
2809
+ ];
2810
+ var ListInsightsMetricDataResponse$ = [3, n0, _LIMDRi,
2811
+ 0,
2812
+ [_TARN, _ES, _EN, _IT, _ECr, _Ti, _V, _NT],
2813
+ [0, 0, 0, 0, 0, 64 | 4, 64 | 1, 0]
2814
+ ];
2815
+ var ListPublicKeysRequest$ = [3, n0, _LPKR,
2816
+ 0,
2817
+ [_ST, _ETn, _NT],
2818
+ [4, 4, 0]
2819
+ ];
2820
+ var ListPublicKeysResponse$ = [3, n0, _LPKRi,
2821
+ 0,
2822
+ [_PKL, _NT],
2823
+ [() => PublicKeyList, 0]
2824
+ ];
2825
+ var ListQueriesRequest$ = [3, n0, _LQR,
2826
+ 0,
2827
+ [_EDS, _NT, _MR, _ST, _ETn, _QS],
2828
+ [0, 0, 1, 4, 4, 0], 1
2829
+ ];
2830
+ var ListQueriesResponse$ = [3, n0, _LQRi,
2831
+ 0,
2832
+ [_Q, _NT],
2833
+ [() => Queries, 0]
2834
+ ];
2835
+ var ListTagsRequest$ = [3, n0, _LTR,
2836
+ 0,
2837
+ [_RIL, _NT],
2838
+ [64 | 0, 0], 1
2839
+ ];
2840
+ var ListTagsResponse$ = [3, n0, _LTRi,
2841
+ 0,
2842
+ [_RTL, _NT],
2843
+ [() => ResourceTagList, 0]
2844
+ ];
2845
+ var ListTrailsRequest$ = [3, n0, _LTRis,
2846
+ 0,
2847
+ [_NT],
2848
+ [0]
2849
+ ];
2850
+ var ListTrailsResponse$ = [3, n0, _LTRist,
2851
+ 0,
2852
+ [_Tra, _NT],
2853
+ [() => Trails, 0]
2854
+ ];
2855
+ var LookupAttribute$ = [3, n0, _LA,
2856
+ 0,
2857
+ [_AK, _AV],
2858
+ [0, 0], 2
2859
+ ];
2860
+ var LookupEventsRequest$ = [3, n0, _LER,
2861
+ 0,
2862
+ [_LAo, _ST, _ETn, _EC, _MR, _NT],
2863
+ [() => LookupAttributesList, 4, 4, 0, 1, 0]
2864
+ ];
2865
+ var LookupEventsResponse$ = [3, n0, _LERo,
2866
+ 0,
2867
+ [_Eve, _NT],
2868
+ [() => EventsList, 0]
2869
+ ];
2870
+ var PartitionKey$ = [3, n0, _PKa,
2871
+ 0,
2872
+ [_N, _Ty],
2873
+ [0, 0], 2
2874
+ ];
2875
+ var PublicKey$ = [3, n0, _PKu,
2876
+ 0,
2877
+ [_Va, _VST, _VET, _Fi],
2878
+ [21, 4, 4, 0]
2879
+ ];
2880
+ var PutEventConfigurationRequest$ = [3, n0, _PECR,
2881
+ 0,
2882
+ [_TN, _EDS, _MES, _CKSo, _ACg],
2883
+ [0, 0, 0, () => ContextKeySelectors, () => AggregationConfigurations]
2884
+ ];
2885
+ var PutEventConfigurationResponse$ = [3, n0, _PECRu,
2886
+ 0,
2887
+ [_TARN, _EDSA, _MES, _CKSo, _ACg],
2888
+ [0, 0, 0, () => ContextKeySelectors, () => AggregationConfigurations]
2889
+ ];
2890
+ var PutEventSelectorsRequest$ = [3, n0, _PESR,
2891
+ 0,
2892
+ [_TN, _ESve, _AESd],
2893
+ [0, () => EventSelectors, () => AdvancedEventSelectors], 1
2894
+ ];
2895
+ var PutEventSelectorsResponse$ = [3, n0, _PESRu,
2896
+ 0,
2897
+ [_TARN, _ESve, _AESd],
2898
+ [0, () => EventSelectors, () => AdvancedEventSelectors]
2899
+ ];
2900
+ var PutInsightSelectorsRequest$ = [3, n0, _PISR,
2901
+ 0,
2902
+ [_ISn, _TN, _EDS, _ID],
2903
+ [() => InsightSelectors, 0, 0, 0], 1
2904
+ ];
2905
+ var PutInsightSelectorsResponse$ = [3, n0, _PISRu,
2906
+ 0,
2907
+ [_TARN, _ISn, _EDSA, _ID],
2908
+ [0, () => InsightSelectors, 0, 0]
2909
+ ];
2910
+ var PutResourcePolicyRequest$ = [3, n0, _PRPR,
2911
+ 0,
2912
+ [_RA, _RPe],
2913
+ [0, 0], 2
2914
+ ];
2915
+ var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
2916
+ 0,
2917
+ [_RA, _RPe, _DARP],
2918
+ [0, 0, 0]
2919
+ ];
2920
+ var Query$ = [3, n0, _Qu,
2921
+ 0,
2922
+ [_QI, _QS, _CTr],
2923
+ [0, 0, 4]
2924
+ ];
2925
+ var QueryStatistics$ = [3, n0, _QSue,
2926
+ 0,
2927
+ [_RC, _TRC, _BS],
2928
+ [1, 1, 1]
2929
+ ];
2930
+ var QueryStatisticsForDescribeQuery$ = [3, n0, _QSFDQ,
2931
+ 0,
2932
+ [_EMv, _ESven, _BS, _ETIM, _CTr],
2933
+ [1, 1, 1, 1, 4]
2934
+ ];
2935
+ var RefreshSchedule$ = [3, n0, _RS,
2936
+ 0,
2937
+ [_Fr, _St, _TOD],
2938
+ [() => RefreshScheduleFrequency$, 0, 0]
2939
+ ];
2940
+ var RefreshScheduleFrequency$ = [3, n0, _RSF,
2941
+ 0,
2942
+ [_Un, _Va],
2943
+ [0, 1]
2944
+ ];
2945
+ var RegisterOrganizationDelegatedAdminRequest$ = [3, n0, _RODAR,
2946
+ 0,
2947
+ [_MAI],
2948
+ [0], 1
2949
+ ];
2950
+ var RegisterOrganizationDelegatedAdminResponse$ = [3, n0, _RODARe,
2951
+ 0,
2952
+ [],
2953
+ []
2954
+ ];
2955
+ var RemoveTagsRequest$ = [3, n0, _RTR,
2956
+ 0,
2957
+ [_RI, _TL],
2958
+ [0, () => TagsList], 2
2959
+ ];
2960
+ var RemoveTagsResponse$ = [3, n0, _RTRe,
2961
+ 0,
2962
+ [],
2963
+ []
2964
+ ];
2965
+ var RequestWidget$ = [3, n0, _RW,
2966
+ 0,
2967
+ [_QSuer, _VP, _QP],
2968
+ [0, 128 | 0, 64 | 0], 2
2969
+ ];
2970
+ var Resource$ = [3, n0, _Re,
2971
+ 0,
2972
+ [_RT, _RN],
2973
+ [0, 0]
2974
+ ];
2975
+ var ResourceTag$ = [3, n0, _RTe,
2976
+ 0,
2977
+ [_RI, _TL],
2978
+ [0, () => TagsList]
2979
+ ];
2980
+ var RestoreEventDataStoreRequest$ = [3, n0, _REDSR,
2981
+ 0,
2982
+ [_EDS],
2983
+ [0], 1
2984
+ ];
2985
+ var RestoreEventDataStoreResponse$ = [3, n0, _REDSRe,
2986
+ 0,
2987
+ [_EDSA, _N, _St, _AESd, _MRE, _OE, _RP, _TPE, _CT, _UT, _KKI, _BM],
2988
+ [0, 0, 0, () => AdvancedEventSelectors, 2, 2, 1, 2, 4, 4, 0, 0]
2989
+ ];
2990
+ var S3ImportSource$ = [3, n0, _SIS,
2991
+ 0,
2992
+ [_SLU, _SBR, _SBARA],
2993
+ [0, 0, 0], 3
2994
+ ];
2995
+ var SearchSampleQueriesRequest$ = [3, n0, _SSQR,
2996
+ 0,
2997
+ [_SP, _MR, _NT],
2998
+ [0, 1, 0], 1
2999
+ ];
3000
+ var SearchSampleQueriesResponse$ = [3, n0, _SSQRe,
3001
+ 0,
3002
+ [_SR, _NT],
3003
+ [() => SearchSampleQueriesSearchResults, 0]
3004
+ ];
3005
+ var SearchSampleQueriesSearchResult$ = [3, n0, _SSQSR,
3006
+ 0,
3007
+ [_N, _Des, _SQL, _Rel],
3008
+ [0, 0, 0, 1]
3009
+ ];
3010
+ var SourceConfig$ = [3, n0, _SC,
3011
+ 0,
3012
+ [_ATAR, _AESd],
3013
+ [2, () => AdvancedEventSelectors]
3014
+ ];
3015
+ var StartDashboardRefreshRequest$ = [3, n0, _SDRR,
3016
+ 0,
3017
+ [_DI, _QPV],
3018
+ [0, 128 | 0], 1
3019
+ ];
3020
+ var StartDashboardRefreshResponse$ = [3, n0, _SDRRt,
3021
+ 0,
3022
+ [_RIe],
3023
+ [0]
3024
+ ];
3025
+ var StartEventDataStoreIngestionRequest$ = [3, n0, _SEDSIR,
3026
+ 0,
3027
+ [_EDS],
3028
+ [0], 1
3029
+ ];
3030
+ var StartEventDataStoreIngestionResponse$ = [3, n0, _SEDSIRt,
3031
+ 0,
3032
+ [],
3033
+ []
3034
+ ];
3035
+ var StartImportRequest$ = [3, n0, _SIR,
3036
+ 0,
3037
+ [_D, _ISm, _SET, _EET, _II],
3038
+ [64 | 0, () => ImportSource$, 4, 4, 0]
3039
+ ];
3040
+ var StartImportResponse$ = [3, n0, _SIRt,
3041
+ 0,
3042
+ [_II, _D, _ISm, _SET, _EET, _ISmp, _CT, _UT],
3043
+ [0, 64 | 0, () => ImportSource$, 4, 4, 0, 4, 4]
3044
+ ];
3045
+ var StartLoggingRequest$ = [3, n0, _SLR,
3046
+ 0,
3047
+ [_N],
3048
+ [0], 1
3049
+ ];
3050
+ var StartLoggingResponse$ = [3, n0, _SLRt,
3051
+ 0,
3052
+ [],
3053
+ []
3054
+ ];
3055
+ var StartQueryRequest$ = [3, n0, _SQR,
3056
+ 0,
3057
+ [_QSuer, _DSU, _QA, _QP, _EDSOAI],
3058
+ [0, 0, 0, 64 | 0, 0]
3059
+ ];
3060
+ var StartQueryResponse$ = [3, n0, _SQRt,
3061
+ 0,
3062
+ [_QI, _EDSOAI],
3063
+ [0, 0]
3064
+ ];
3065
+ var StopEventDataStoreIngestionRequest$ = [3, n0, _SEDSIRto,
3066
+ 0,
3067
+ [_EDS],
3068
+ [0], 1
3069
+ ];
3070
+ var StopEventDataStoreIngestionResponse$ = [3, n0, _SEDSIRtop,
3071
+ 0,
3072
+ [],
3073
+ []
3074
+ ];
3075
+ var StopImportRequest$ = [3, n0, _SIRto,
3076
+ 0,
3077
+ [_II],
3078
+ [0], 1
3079
+ ];
3080
+ var StopImportResponse$ = [3, n0, _SIRtop,
3081
+ 0,
3082
+ [_II, _ISm, _D, _ISmp, _CT, _UT, _SET, _EET, _ISmpo],
3083
+ [0, () => ImportSource$, 64 | 0, 0, 4, 4, 4, 4, () => ImportStatistics$]
3084
+ ];
3085
+ var StopLoggingRequest$ = [3, n0, _SLRto,
3086
+ 0,
3087
+ [_N],
3088
+ [0], 1
3089
+ ];
3090
+ var StopLoggingResponse$ = [3, n0, _SLRtop,
3091
+ 0,
3092
+ [],
3093
+ []
3094
+ ];
3095
+ var Tag$ = [3, n0, _Tag,
3096
+ 0,
3097
+ [_K, _Va],
3098
+ [0, 0], 1
3099
+ ];
3100
+ var Trail$ = [3, n0, _Tr,
3101
+ 0,
3102
+ [_N, _SBN, _SKP, _STN, _STARN, _IGSE, _IMRT, _HR, _TARN, _LFVE, _CWLLGA, _CWLRA, _KKI, _HCES, _HIS, _IOT],
3103
+ [0, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 2, 2, 2]
3104
+ ];
3105
+ var TrailInfo$ = [3, n0, _TI,
3106
+ 0,
3107
+ [_TARN, _N, _HR],
3108
+ [0, 0, 0]
3109
+ ];
3110
+ var UpdateChannelRequest$ = [3, n0, _UCR,
3111
+ 0,
3112
+ [_C, _D, _N],
3113
+ [0, () => Destinations, 0], 1
3114
+ ];
3115
+ var UpdateChannelResponse$ = [3, n0, _UCRp,
3116
+ 0,
3117
+ [_CA, _N, _S, _D],
3118
+ [0, 0, 0, () => Destinations]
3119
+ ];
3120
+ var UpdateDashboardRequest$ = [3, n0, _UDR,
3121
+ 0,
3122
+ [_DI, _W, _RS, _TPE],
3123
+ [0, () => RequestWidgetList, () => RefreshSchedule$, 2], 1
3124
+ ];
3125
+ var UpdateDashboardResponse$ = [3, n0, _UDRp,
3126
+ 0,
3127
+ [_DA, _N, _Ty, _W, _RS, _TPE, _CT, _UT],
3128
+ [0, 0, 0, () => WidgetList, () => RefreshSchedule$, 2, 4, 4]
3129
+ ];
3130
+ var UpdateEventDataStoreRequest$ = [3, n0, _UEDSR,
3131
+ 0,
3132
+ [_EDS, _N, _AESd, _MRE, _OE, _RP, _TPE, _KKI, _BM],
3133
+ [0, 0, () => AdvancedEventSelectors, 2, 2, 1, 2, 0, 0], 1
3134
+ ];
3135
+ var UpdateEventDataStoreResponse$ = [3, n0, _UEDSRp,
3136
+ 0,
3137
+ [_EDSA, _N, _St, _AESd, _MRE, _OE, _RP, _TPE, _CT, _UT, _KKI, _BM, _FSe, _FRA],
3138
+ [0, 0, 0, () => AdvancedEventSelectors, 2, 2, 1, 2, 4, 4, 0, 0, 0, 0]
3139
+ ];
3140
+ var UpdateTrailRequest$ = [3, n0, _UTR,
3141
+ 0,
3142
+ [_N, _SBN, _SKP, _STN, _IGSE, _IMRT, _ELFV, _CWLLGA, _CWLRA, _KKI, _IOT],
3143
+ [0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 2], 1
3144
+ ];
3145
+ var UpdateTrailResponse$ = [3, n0, _UTRp,
3146
+ 0,
3147
+ [_N, _SBN, _SKP, _STN, _STARN, _IGSE, _IMRT, _TARN, _LFVE, _CWLLGA, _CWLRA, _KKI, _IOT],
3148
+ [0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 0, 0, 2]
3149
+ ];
3150
+ var Widget$ = [3, n0, _Wi,
3151
+ 0,
3152
+ [_QA, _QSuer, _QP, _VP],
3153
+ [0, 0, 64 | 0, 128 | 0]
3154
+ ];
3155
+ var AdvancedEventSelectors = [1, n0, _AESd,
3156
+ 0, () => AdvancedEventSelector$
3157
+ ];
3158
+ var AdvancedFieldSelectors = [1, n0, _AFSd,
3159
+ 0, () => AdvancedFieldSelector$
3160
+ ];
3161
+ var AggregationConfigurations = [1, n0, _ACg,
3162
+ 0, () => AggregationConfiguration$
3163
+ ];
3164
+ var Channels = [1, n0, _Ch,
3165
+ 0, () => Channel$
3166
+ ];
3167
+ var ContextKeySelectors = [1, n0, _CKSo,
3168
+ 0, () => ContextKeySelector$
3169
+ ];
3170
+ var Dashboards = [1, n0, _Da,
3171
+ 0, () => DashboardDetail$
3172
+ ];
3173
+ var DataResources = [1, n0, _DRa,
3174
+ 0, () => DataResource$
3175
+ ];
3176
+ var Destinations = [1, n0, _D,
3177
+ 0, () => Destination$
3178
+ ];
3179
+ var EventDataStores = [1, n0, _EDSv,
3180
+ 0, () => EventDataStore$
3181
+ ];
3182
+ var EventSelectors = [1, n0, _ESve,
3183
+ 0, () => EventSelector$
3184
+ ];
3185
+ var EventsList = [1, n0, _EL,
3186
+ 0, () => Event$
3187
+ ];
3188
+ var ImportFailureList = [1, n0, _IFL,
3189
+ 0, () => ImportFailureListItem$
3190
+ ];
3191
+ var ImportsList = [1, n0, _ILm,
3192
+ 0, () => ImportsListItem$
3193
+ ];
3194
+ var InsightSelectors = [1, n0, _ISn,
3195
+ 0, () => InsightSelector$
3196
+ ];
3197
+ var LookupAttributesList = [1, n0, _LAL,
3198
+ 0, () => LookupAttribute$
3199
+ ];
3200
+ var PartitionKeyList = [1, n0, _PKLa,
3201
+ 0, () => PartitionKey$
3202
+ ];
3203
+ var PublicKeyList = [1, n0, _PKL,
3204
+ 0, () => PublicKey$
3205
+ ];
3206
+ var Queries = [1, n0, _Q,
3207
+ 0, () => Query$
3208
+ ];
3209
+ var RequestWidgetList = [1, n0, _RWL,
3210
+ 0, () => RequestWidget$
3211
+ ];
3212
+ var ResourceList = [1, n0, _RL,
3213
+ 0, () => Resource$
3214
+ ];
3215
+ var ResourceTagList = [1, n0, _RTL,
3216
+ 0, () => ResourceTag$
3217
+ ];
3218
+ var SearchSampleQueriesSearchResults = [1, n0, _SSQSRe,
3219
+ 0, () => SearchSampleQueriesSearchResult$
3220
+ ];
3221
+ var TagsList = [1, n0, _TL,
3222
+ 0, () => Tag$
3223
+ ];
3224
+ var TrailList = [1, n0, _TLr,
3225
+ 0, () => Trail$
3226
+ ];
3227
+ var Trails = [1, n0, _Tra,
3228
+ 0, () => TrailInfo$
3229
+ ];
3230
+ var WidgetList = [1, n0, _WL,
3231
+ 0, () => Widget$
3232
+ ];
3233
+ var AddTags$ = [9, n0, _AT,
3234
+ 2, () => AddTagsRequest$, () => AddTagsResponse$
3235
+ ];
3236
+ var CancelQuery$ = [9, n0, _CQ,
3237
+ 2, () => CancelQueryRequest$, () => CancelQueryResponse$
3238
+ ];
3239
+ var CreateChannel$ = [9, n0, _CC,
3240
+ 0, () => CreateChannelRequest$, () => CreateChannelResponse$
3241
+ ];
3242
+ var CreateDashboard$ = [9, n0, _CD,
3243
+ 2, () => CreateDashboardRequest$, () => CreateDashboardResponse$
3244
+ ];
3245
+ var CreateEventDataStore$ = [9, n0, _CEDS,
3246
+ 0, () => CreateEventDataStoreRequest$, () => CreateEventDataStoreResponse$
3247
+ ];
3248
+ var CreateTrail$ = [9, n0, _CTre,
3249
+ 2, () => CreateTrailRequest$, () => CreateTrailResponse$
3250
+ ];
3251
+ var DeleteChannel$ = [9, n0, _DC,
3252
+ 0, () => DeleteChannelRequest$, () => DeleteChannelResponse$
3253
+ ];
3254
+ var DeleteDashboard$ = [9, n0, _DDe,
3255
+ 2, () => DeleteDashboardRequest$, () => DeleteDashboardResponse$
3256
+ ];
3257
+ var DeleteEventDataStore$ = [9, n0, _DEDS,
3258
+ 0, () => DeleteEventDataStoreRequest$, () => DeleteEventDataStoreResponse$
3259
+ ];
3260
+ var DeleteResourcePolicy$ = [9, n0, _DRP,
3261
+ 2, () => DeleteResourcePolicyRequest$, () => DeleteResourcePolicyResponse$
3262
+ ];
3263
+ var DeleteTrail$ = [9, n0, _DTe,
3264
+ 2, () => DeleteTrailRequest$, () => DeleteTrailResponse$
3265
+ ];
3266
+ var DeregisterOrganizationDelegatedAdmin$ = [9, n0, _DODA,
3267
+ 2, () => DeregisterOrganizationDelegatedAdminRequest$, () => DeregisterOrganizationDelegatedAdminResponse$
3268
+ ];
3269
+ var DescribeQuery$ = [9, n0, _DQ,
3270
+ 2, () => DescribeQueryRequest$, () => DescribeQueryResponse$
3271
+ ];
3272
+ var DescribeTrails$ = [9, n0, _DTes,
3273
+ 2, () => DescribeTrailsRequest$, () => DescribeTrailsResponse$
3274
+ ];
3275
+ var DisableFederation$ = [9, n0, _DF,
3276
+ 0, () => DisableFederationRequest$, () => DisableFederationResponse$
3277
+ ];
3278
+ var EnableFederation$ = [9, n0, _EF,
3279
+ 0, () => EnableFederationRequest$, () => EnableFederationResponse$
3280
+ ];
3281
+ var GenerateQuery$ = [9, n0, _GQ,
3282
+ 2, () => GenerateQueryRequest$, () => GenerateQueryResponse$
3283
+ ];
3284
+ var GetChannel$ = [9, n0, _GC,
3285
+ 2, () => GetChannelRequest$, () => GetChannelResponse$
3286
+ ];
3287
+ var GetDashboard$ = [9, n0, _GD,
3288
+ 2, () => GetDashboardRequest$, () => GetDashboardResponse$
3289
+ ];
3290
+ var GetEventConfiguration$ = [9, n0, _GEC,
3291
+ 2, () => GetEventConfigurationRequest$, () => GetEventConfigurationResponse$
3292
+ ];
3293
+ var GetEventDataStore$ = [9, n0, _GEDS,
3294
+ 2, () => GetEventDataStoreRequest$, () => GetEventDataStoreResponse$
3295
+ ];
3296
+ var GetEventSelectors$ = [9, n0, _GES,
3297
+ 2, () => GetEventSelectorsRequest$, () => GetEventSelectorsResponse$
3298
+ ];
3299
+ var GetImport$ = [9, n0, _GI,
3300
+ 0, () => GetImportRequest$, () => GetImportResponse$
3301
+ ];
3302
+ var GetInsightSelectors$ = [9, n0, _GIS,
3303
+ 2, () => GetInsightSelectorsRequest$, () => GetInsightSelectorsResponse$
3304
+ ];
3305
+ var GetQueryResults$ = [9, n0, _GQRet,
3306
+ 0, () => GetQueryResultsRequest$, () => GetQueryResultsResponse$
3307
+ ];
3308
+ var GetResourcePolicy$ = [9, n0, _GRP,
3309
+ 2, () => GetResourcePolicyRequest$, () => GetResourcePolicyResponse$
3310
+ ];
3311
+ var GetTrail$ = [9, n0, _GT,
3312
+ 2, () => GetTrailRequest$, () => GetTrailResponse$
3313
+ ];
3314
+ var GetTrailStatus$ = [9, n0, _GTS,
3315
+ 2, () => GetTrailStatusRequest$, () => GetTrailStatusResponse$
3316
+ ];
3317
+ var ListChannels$ = [9, n0, _LC,
3318
+ 2, () => ListChannelsRequest$, () => ListChannelsResponse$
3319
+ ];
3320
+ var ListDashboards$ = [9, n0, _LD,
3321
+ 2, () => ListDashboardsRequest$, () => ListDashboardsResponse$
3322
+ ];
3323
+ var ListEventDataStores$ = [9, n0, _LEDS,
3324
+ 2, () => ListEventDataStoresRequest$, () => ListEventDataStoresResponse$
3325
+ ];
3326
+ var ListImportFailures$ = [9, n0, _LIF,
3327
+ 2, () => ListImportFailuresRequest$, () => ListImportFailuresResponse$
3328
+ ];
3329
+ var ListImports$ = [9, n0, _LI,
3330
+ 2, () => ListImportsRequest$, () => ListImportsResponse$
3331
+ ];
3332
+ var ListInsightsData$ = [9, n0, _LID,
3333
+ 2, () => ListInsightsDataRequest$, () => ListInsightsDataResponse$
3334
+ ];
3335
+ var ListInsightsMetricData$ = [9, n0, _LIMD,
3336
+ 2, () => ListInsightsMetricDataRequest$, () => ListInsightsMetricDataResponse$
3337
+ ];
3338
+ var ListPublicKeys$ = [9, n0, _LPK,
3339
+ 2, () => ListPublicKeysRequest$, () => ListPublicKeysResponse$
3340
+ ];
3341
+ var ListQueries$ = [9, n0, _LQ,
3342
+ 2, () => ListQueriesRequest$, () => ListQueriesResponse$
3343
+ ];
3344
+ var ListTags$ = [9, n0, _LT,
3345
+ 2, () => ListTagsRequest$, () => ListTagsResponse$
3346
+ ];
3347
+ var ListTrails$ = [9, n0, _LTi,
3348
+ 2, () => ListTrailsRequest$, () => ListTrailsResponse$
3349
+ ];
3350
+ var LookupEvents$ = [9, n0, _LE,
3351
+ 2, () => LookupEventsRequest$, () => LookupEventsResponse$
3352
+ ];
3353
+ var PutEventConfiguration$ = [9, n0, _PEC,
3354
+ 2, () => PutEventConfigurationRequest$, () => PutEventConfigurationResponse$
3355
+ ];
3356
+ var PutEventSelectors$ = [9, n0, _PES,
3357
+ 2, () => PutEventSelectorsRequest$, () => PutEventSelectorsResponse$
3358
+ ];
3359
+ var PutInsightSelectors$ = [9, n0, _PIS,
3360
+ 2, () => PutInsightSelectorsRequest$, () => PutInsightSelectorsResponse$
3361
+ ];
3362
+ var PutResourcePolicy$ = [9, n0, _PRP,
3363
+ 2, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
3364
+ ];
3365
+ var RegisterOrganizationDelegatedAdmin$ = [9, n0, _RODA,
3366
+ 2, () => RegisterOrganizationDelegatedAdminRequest$, () => RegisterOrganizationDelegatedAdminResponse$
3367
+ ];
3368
+ var RemoveTags$ = [9, n0, _RTem,
3369
+ 2, () => RemoveTagsRequest$, () => RemoveTagsResponse$
3370
+ ];
3371
+ var RestoreEventDataStore$ = [9, n0, _REDS,
3372
+ 0, () => RestoreEventDataStoreRequest$, () => RestoreEventDataStoreResponse$
3373
+ ];
3374
+ var SearchSampleQueries$ = [9, n0, _SSQ,
3375
+ 2, () => SearchSampleQueriesRequest$, () => SearchSampleQueriesResponse$
3376
+ ];
3377
+ var StartDashboardRefresh$ = [9, n0, _SDR,
3378
+ 2, () => StartDashboardRefreshRequest$, () => StartDashboardRefreshResponse$
3379
+ ];
3380
+ var StartEventDataStoreIngestion$ = [9, n0, _SEDSI,
3381
+ 0, () => StartEventDataStoreIngestionRequest$, () => StartEventDataStoreIngestionResponse$
3382
+ ];
3383
+ var StartImport$ = [9, n0, _SIt,
3384
+ 0, () => StartImportRequest$, () => StartImportResponse$
3385
+ ];
3386
+ var StartLogging$ = [9, n0, _SL,
3387
+ 2, () => StartLoggingRequest$, () => StartLoggingResponse$
3388
+ ];
3389
+ var StartQuery$ = [9, n0, _SQ,
3390
+ 2, () => StartQueryRequest$, () => StartQueryResponse$
3391
+ ];
3392
+ var StopEventDataStoreIngestion$ = [9, n0, _SEDSIt,
3393
+ 0, () => StopEventDataStoreIngestionRequest$, () => StopEventDataStoreIngestionResponse$
3394
+ ];
3395
+ var StopImport$ = [9, n0, _SIto,
3396
+ 0, () => StopImportRequest$, () => StopImportResponse$
3397
+ ];
3398
+ var StopLogging$ = [9, n0, _SLt,
3399
+ 2, () => StopLoggingRequest$, () => StopLoggingResponse$
3400
+ ];
3401
+ var UpdateChannel$ = [9, n0, _UC,
3402
+ 2, () => UpdateChannelRequest$, () => UpdateChannelResponse$
3403
+ ];
3404
+ var UpdateDashboard$ = [9, n0, _UD,
3405
+ 2, () => UpdateDashboardRequest$, () => UpdateDashboardResponse$
3406
+ ];
3407
+ var UpdateEventDataStore$ = [9, n0, _UEDS,
3408
+ 2, () => UpdateEventDataStoreRequest$, () => UpdateEventDataStoreResponse$
3409
+ ];
3410
+ var UpdateTrail$ = [9, n0, _UTp,
3411
+ 2, () => UpdateTrailRequest$, () => UpdateTrailResponse$
3412
+ ];
3413
+
3414
+ const getRuntimeConfig$1 = (config) => {
3415
+ return {
3416
+ apiVersion: "2013-11-01",
3417
+ base64Decoder: config?.base64Decoder ?? fromBase64,
3418
+ base64Encoder: config?.base64Encoder ?? toBase64,
3419
+ disableHostPrefix: config?.disableHostPrefix ?? false,
3420
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
3421
+ extensions: config?.extensions ?? [],
3422
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCloudTrailHttpAuthSchemeProvider,
3423
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
3424
+ {
3425
+ schemeId: "aws.auth#sigv4",
3426
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
3427
+ signer: new AwsSdkSigV4Signer(),
3428
+ },
3429
+ ],
3430
+ logger: config?.logger ?? new NoOpLogger(),
3431
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
3432
+ protocolSettings: config?.protocolSettings ?? {
3433
+ defaultNamespace: "com.amazonaws.cloudtrail",
3434
+ errorTypeRegistries,
3435
+ xmlNamespace: "http://cloudtrail.amazonaws.com/doc/2013-11-01/",
3436
+ version: "2013-11-01",
3437
+ serviceTarget: "CloudTrail_20131101",
3438
+ },
3439
+ serviceId: config?.serviceId ?? "CloudTrail",
3440
+ urlParser: config?.urlParser ?? parseUrl,
3441
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
3442
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
3443
+ };
3444
+ };
3445
+
3446
+ const getRuntimeConfig = (config) => {
3447
+ emitWarningIfUnsupportedVersion(process.version);
3448
+ const defaultsMode = resolveDefaultsModeConfig(config);
3449
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
3450
+ const clientSharedValues = getRuntimeConfig$1(config);
3451
+ emitWarningIfUnsupportedVersion$1(process.version);
3452
+ const loaderConfig = {
3453
+ profile: config?.profile,
3454
+ logger: clientSharedValues.logger,
3455
+ };
3456
+ return {
3457
+ ...clientSharedValues,
3458
+ ...config,
3459
+ runtime: "node",
3460
+ defaultsMode,
3461
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
3462
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
3463
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
3464
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
3465
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
3466
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
3467
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
3468
+ retryMode: config?.retryMode ??
3469
+ loadConfig({
3470
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
3471
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
3472
+ }, config),
3473
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
3474
+ streamCollector: config?.streamCollector ?? streamCollector,
3475
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3476
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
3477
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
3478
+ };
3479
+ };
3480
+
34
3481
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
3482
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
3483
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1062,92 +4509,482 @@ const LookupAttributeKey = {
1062
4509
  USERNAME: "Username",
1063
4510
  };
1064
4511
 
4512
+ exports.AccessDeniedException = AccessDeniedException;
4513
+ exports.AccessDeniedException$ = AccessDeniedException$;
4514
+ exports.AccountHasOngoingImportException = AccountHasOngoingImportException;
4515
+ exports.AccountHasOngoingImportException$ = AccountHasOngoingImportException$;
4516
+ exports.AccountNotFoundException = AccountNotFoundException;
4517
+ exports.AccountNotFoundException$ = AccountNotFoundException$;
4518
+ exports.AccountNotRegisteredException = AccountNotRegisteredException;
4519
+ exports.AccountNotRegisteredException$ = AccountNotRegisteredException$;
4520
+ exports.AccountRegisteredException = AccountRegisteredException;
4521
+ exports.AccountRegisteredException$ = AccountRegisteredException$;
4522
+ exports.AddTags$ = AddTags$;
1065
4523
  exports.AddTagsCommand = AddTagsCommand;
4524
+ exports.AddTagsRequest$ = AddTagsRequest$;
4525
+ exports.AddTagsResponse$ = AddTagsResponse$;
4526
+ exports.AdvancedEventSelector$ = AdvancedEventSelector$;
4527
+ exports.AdvancedFieldSelector$ = AdvancedFieldSelector$;
4528
+ exports.AggregationConfiguration$ = AggregationConfiguration$;
1066
4529
  exports.BillingMode = BillingMode;
4530
+ exports.CancelQuery$ = CancelQuery$;
1067
4531
  exports.CancelQueryCommand = CancelQueryCommand;
4532
+ exports.CancelQueryRequest$ = CancelQueryRequest$;
4533
+ exports.CancelQueryResponse$ = CancelQueryResponse$;
4534
+ exports.CannotDelegateManagementAccountException = CannotDelegateManagementAccountException;
4535
+ exports.CannotDelegateManagementAccountException$ = CannotDelegateManagementAccountException$;
4536
+ exports.Channel$ = Channel$;
4537
+ exports.ChannelARNInvalidException = ChannelARNInvalidException;
4538
+ exports.ChannelARNInvalidException$ = ChannelARNInvalidException$;
4539
+ exports.ChannelAlreadyExistsException = ChannelAlreadyExistsException;
4540
+ exports.ChannelAlreadyExistsException$ = ChannelAlreadyExistsException$;
4541
+ exports.ChannelExistsForEDSException = ChannelExistsForEDSException;
4542
+ exports.ChannelExistsForEDSException$ = ChannelExistsForEDSException$;
4543
+ exports.ChannelMaxLimitExceededException = ChannelMaxLimitExceededException;
4544
+ exports.ChannelMaxLimitExceededException$ = ChannelMaxLimitExceededException$;
4545
+ exports.ChannelNotFoundException = ChannelNotFoundException;
4546
+ exports.ChannelNotFoundException$ = ChannelNotFoundException$;
1068
4547
  exports.CloudTrail = CloudTrail;
4548
+ exports.CloudTrailARNInvalidException = CloudTrailARNInvalidException;
4549
+ exports.CloudTrailARNInvalidException$ = CloudTrailARNInvalidException$;
4550
+ exports.CloudTrailAccessNotEnabledException = CloudTrailAccessNotEnabledException;
4551
+ exports.CloudTrailAccessNotEnabledException$ = CloudTrailAccessNotEnabledException$;
1069
4552
  exports.CloudTrailClient = CloudTrailClient;
4553
+ exports.CloudTrailInvalidClientTokenIdException = CloudTrailInvalidClientTokenIdException;
4554
+ exports.CloudTrailInvalidClientTokenIdException$ = CloudTrailInvalidClientTokenIdException$;
4555
+ exports.CloudTrailServiceException = CloudTrailServiceException;
4556
+ exports.CloudTrailServiceException$ = CloudTrailServiceException$;
4557
+ exports.CloudWatchLogsDeliveryUnavailableException = CloudWatchLogsDeliveryUnavailableException;
4558
+ exports.CloudWatchLogsDeliveryUnavailableException$ = CloudWatchLogsDeliveryUnavailableException$;
4559
+ exports.ConcurrentModificationException = ConcurrentModificationException;
4560
+ exports.ConcurrentModificationException$ = ConcurrentModificationException$;
4561
+ exports.ConflictException = ConflictException;
4562
+ exports.ConflictException$ = ConflictException$;
4563
+ exports.ContextKeySelector$ = ContextKeySelector$;
4564
+ exports.CreateChannel$ = CreateChannel$;
1070
4565
  exports.CreateChannelCommand = CreateChannelCommand;
4566
+ exports.CreateChannelRequest$ = CreateChannelRequest$;
4567
+ exports.CreateChannelResponse$ = CreateChannelResponse$;
4568
+ exports.CreateDashboard$ = CreateDashboard$;
1071
4569
  exports.CreateDashboardCommand = CreateDashboardCommand;
4570
+ exports.CreateDashboardRequest$ = CreateDashboardRequest$;
4571
+ exports.CreateDashboardResponse$ = CreateDashboardResponse$;
4572
+ exports.CreateEventDataStore$ = CreateEventDataStore$;
1072
4573
  exports.CreateEventDataStoreCommand = CreateEventDataStoreCommand;
4574
+ exports.CreateEventDataStoreRequest$ = CreateEventDataStoreRequest$;
4575
+ exports.CreateEventDataStoreResponse$ = CreateEventDataStoreResponse$;
4576
+ exports.CreateTrail$ = CreateTrail$;
1073
4577
  exports.CreateTrailCommand = CreateTrailCommand;
4578
+ exports.CreateTrailRequest$ = CreateTrailRequest$;
4579
+ exports.CreateTrailResponse$ = CreateTrailResponse$;
4580
+ exports.DashboardDetail$ = DashboardDetail$;
1074
4581
  exports.DashboardStatus = DashboardStatus;
1075
4582
  exports.DashboardType = DashboardType;
4583
+ exports.DataResource$ = DataResource$;
4584
+ exports.DelegatedAdminAccountLimitExceededException = DelegatedAdminAccountLimitExceededException;
4585
+ exports.DelegatedAdminAccountLimitExceededException$ = DelegatedAdminAccountLimitExceededException$;
4586
+ exports.DeleteChannel$ = DeleteChannel$;
1076
4587
  exports.DeleteChannelCommand = DeleteChannelCommand;
4588
+ exports.DeleteChannelRequest$ = DeleteChannelRequest$;
4589
+ exports.DeleteChannelResponse$ = DeleteChannelResponse$;
4590
+ exports.DeleteDashboard$ = DeleteDashboard$;
1077
4591
  exports.DeleteDashboardCommand = DeleteDashboardCommand;
4592
+ exports.DeleteDashboardRequest$ = DeleteDashboardRequest$;
4593
+ exports.DeleteDashboardResponse$ = DeleteDashboardResponse$;
4594
+ exports.DeleteEventDataStore$ = DeleteEventDataStore$;
1078
4595
  exports.DeleteEventDataStoreCommand = DeleteEventDataStoreCommand;
4596
+ exports.DeleteEventDataStoreRequest$ = DeleteEventDataStoreRequest$;
4597
+ exports.DeleteEventDataStoreResponse$ = DeleteEventDataStoreResponse$;
4598
+ exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
1079
4599
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
4600
+ exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
4601
+ exports.DeleteResourcePolicyResponse$ = DeleteResourcePolicyResponse$;
4602
+ exports.DeleteTrail$ = DeleteTrail$;
1080
4603
  exports.DeleteTrailCommand = DeleteTrailCommand;
4604
+ exports.DeleteTrailRequest$ = DeleteTrailRequest$;
4605
+ exports.DeleteTrailResponse$ = DeleteTrailResponse$;
1081
4606
  exports.DeliveryStatus = DeliveryStatus;
4607
+ exports.DeregisterOrganizationDelegatedAdmin$ = DeregisterOrganizationDelegatedAdmin$;
1082
4608
  exports.DeregisterOrganizationDelegatedAdminCommand = DeregisterOrganizationDelegatedAdminCommand;
4609
+ exports.DeregisterOrganizationDelegatedAdminRequest$ = DeregisterOrganizationDelegatedAdminRequest$;
4610
+ exports.DeregisterOrganizationDelegatedAdminResponse$ = DeregisterOrganizationDelegatedAdminResponse$;
4611
+ exports.DescribeQuery$ = DescribeQuery$;
1083
4612
  exports.DescribeQueryCommand = DescribeQueryCommand;
4613
+ exports.DescribeQueryRequest$ = DescribeQueryRequest$;
4614
+ exports.DescribeQueryResponse$ = DescribeQueryResponse$;
4615
+ exports.DescribeTrails$ = DescribeTrails$;
1084
4616
  exports.DescribeTrailsCommand = DescribeTrailsCommand;
4617
+ exports.DescribeTrailsRequest$ = DescribeTrailsRequest$;
4618
+ exports.DescribeTrailsResponse$ = DescribeTrailsResponse$;
4619
+ exports.Destination$ = Destination$;
1085
4620
  exports.DestinationType = DestinationType;
4621
+ exports.DisableFederation$ = DisableFederation$;
1086
4622
  exports.DisableFederationCommand = DisableFederationCommand;
4623
+ exports.DisableFederationRequest$ = DisableFederationRequest$;
4624
+ exports.DisableFederationResponse$ = DisableFederationResponse$;
4625
+ exports.EnableFederation$ = EnableFederation$;
1087
4626
  exports.EnableFederationCommand = EnableFederationCommand;
4627
+ exports.EnableFederationRequest$ = EnableFederationRequest$;
4628
+ exports.EnableFederationResponse$ = EnableFederationResponse$;
4629
+ exports.Event$ = Event$;
1088
4630
  exports.EventCategory = EventCategory;
1089
4631
  exports.EventCategoryAggregation = EventCategoryAggregation;
4632
+ exports.EventDataStore$ = EventDataStore$;
4633
+ exports.EventDataStoreARNInvalidException = EventDataStoreARNInvalidException;
4634
+ exports.EventDataStoreARNInvalidException$ = EventDataStoreARNInvalidException$;
4635
+ exports.EventDataStoreAlreadyExistsException = EventDataStoreAlreadyExistsException;
4636
+ exports.EventDataStoreAlreadyExistsException$ = EventDataStoreAlreadyExistsException$;
4637
+ exports.EventDataStoreFederationEnabledException = EventDataStoreFederationEnabledException;
4638
+ exports.EventDataStoreFederationEnabledException$ = EventDataStoreFederationEnabledException$;
4639
+ exports.EventDataStoreHasOngoingImportException = EventDataStoreHasOngoingImportException;
4640
+ exports.EventDataStoreHasOngoingImportException$ = EventDataStoreHasOngoingImportException$;
4641
+ exports.EventDataStoreMaxLimitExceededException = EventDataStoreMaxLimitExceededException;
4642
+ exports.EventDataStoreMaxLimitExceededException$ = EventDataStoreMaxLimitExceededException$;
4643
+ exports.EventDataStoreNotFoundException = EventDataStoreNotFoundException;
4644
+ exports.EventDataStoreNotFoundException$ = EventDataStoreNotFoundException$;
1090
4645
  exports.EventDataStoreStatus = EventDataStoreStatus;
4646
+ exports.EventDataStoreTerminationProtectedException = EventDataStoreTerminationProtectedException;
4647
+ exports.EventDataStoreTerminationProtectedException$ = EventDataStoreTerminationProtectedException$;
4648
+ exports.EventSelector$ = EventSelector$;
1091
4649
  exports.FederationStatus = FederationStatus;
4650
+ exports.GenerateQuery$ = GenerateQuery$;
1092
4651
  exports.GenerateQueryCommand = GenerateQueryCommand;
4652
+ exports.GenerateQueryRequest$ = GenerateQueryRequest$;
4653
+ exports.GenerateQueryResponse$ = GenerateQueryResponse$;
4654
+ exports.GenerateResponseException = GenerateResponseException;
4655
+ exports.GenerateResponseException$ = GenerateResponseException$;
4656
+ exports.GetChannel$ = GetChannel$;
1093
4657
  exports.GetChannelCommand = GetChannelCommand;
4658
+ exports.GetChannelRequest$ = GetChannelRequest$;
4659
+ exports.GetChannelResponse$ = GetChannelResponse$;
4660
+ exports.GetDashboard$ = GetDashboard$;
1094
4661
  exports.GetDashboardCommand = GetDashboardCommand;
4662
+ exports.GetDashboardRequest$ = GetDashboardRequest$;
4663
+ exports.GetDashboardResponse$ = GetDashboardResponse$;
4664
+ exports.GetEventConfiguration$ = GetEventConfiguration$;
1095
4665
  exports.GetEventConfigurationCommand = GetEventConfigurationCommand;
4666
+ exports.GetEventConfigurationRequest$ = GetEventConfigurationRequest$;
4667
+ exports.GetEventConfigurationResponse$ = GetEventConfigurationResponse$;
4668
+ exports.GetEventDataStore$ = GetEventDataStore$;
1096
4669
  exports.GetEventDataStoreCommand = GetEventDataStoreCommand;
4670
+ exports.GetEventDataStoreRequest$ = GetEventDataStoreRequest$;
4671
+ exports.GetEventDataStoreResponse$ = GetEventDataStoreResponse$;
4672
+ exports.GetEventSelectors$ = GetEventSelectors$;
1097
4673
  exports.GetEventSelectorsCommand = GetEventSelectorsCommand;
4674
+ exports.GetEventSelectorsRequest$ = GetEventSelectorsRequest$;
4675
+ exports.GetEventSelectorsResponse$ = GetEventSelectorsResponse$;
4676
+ exports.GetImport$ = GetImport$;
1098
4677
  exports.GetImportCommand = GetImportCommand;
4678
+ exports.GetImportRequest$ = GetImportRequest$;
4679
+ exports.GetImportResponse$ = GetImportResponse$;
4680
+ exports.GetInsightSelectors$ = GetInsightSelectors$;
1099
4681
  exports.GetInsightSelectorsCommand = GetInsightSelectorsCommand;
4682
+ exports.GetInsightSelectorsRequest$ = GetInsightSelectorsRequest$;
4683
+ exports.GetInsightSelectorsResponse$ = GetInsightSelectorsResponse$;
4684
+ exports.GetQueryResults$ = GetQueryResults$;
1100
4685
  exports.GetQueryResultsCommand = GetQueryResultsCommand;
4686
+ exports.GetQueryResultsRequest$ = GetQueryResultsRequest$;
4687
+ exports.GetQueryResultsResponse$ = GetQueryResultsResponse$;
4688
+ exports.GetResourcePolicy$ = GetResourcePolicy$;
1101
4689
  exports.GetResourcePolicyCommand = GetResourcePolicyCommand;
4690
+ exports.GetResourcePolicyRequest$ = GetResourcePolicyRequest$;
4691
+ exports.GetResourcePolicyResponse$ = GetResourcePolicyResponse$;
4692
+ exports.GetTrail$ = GetTrail$;
1102
4693
  exports.GetTrailCommand = GetTrailCommand;
4694
+ exports.GetTrailRequest$ = GetTrailRequest$;
4695
+ exports.GetTrailResponse$ = GetTrailResponse$;
4696
+ exports.GetTrailStatus$ = GetTrailStatus$;
1103
4697
  exports.GetTrailStatusCommand = GetTrailStatusCommand;
4698
+ exports.GetTrailStatusRequest$ = GetTrailStatusRequest$;
4699
+ exports.GetTrailStatusResponse$ = GetTrailStatusResponse$;
4700
+ exports.ImportFailureListItem$ = ImportFailureListItem$;
1104
4701
  exports.ImportFailureStatus = ImportFailureStatus;
4702
+ exports.ImportNotFoundException = ImportNotFoundException;
4703
+ exports.ImportNotFoundException$ = ImportNotFoundException$;
4704
+ exports.ImportSource$ = ImportSource$;
4705
+ exports.ImportStatistics$ = ImportStatistics$;
1105
4706
  exports.ImportStatus = ImportStatus;
4707
+ exports.ImportsListItem$ = ImportsListItem$;
4708
+ exports.InactiveEventDataStoreException = InactiveEventDataStoreException;
4709
+ exports.InactiveEventDataStoreException$ = InactiveEventDataStoreException$;
4710
+ exports.InactiveQueryException = InactiveQueryException;
4711
+ exports.InactiveQueryException$ = InactiveQueryException$;
4712
+ exports.IngestionStatus$ = IngestionStatus$;
4713
+ exports.InsightNotEnabledException = InsightNotEnabledException;
4714
+ exports.InsightNotEnabledException$ = InsightNotEnabledException$;
4715
+ exports.InsightSelector$ = InsightSelector$;
1106
4716
  exports.InsightType = InsightType;
1107
4717
  exports.InsightsMetricDataType = InsightsMetricDataType;
4718
+ exports.InsufficientDependencyServiceAccessPermissionException = InsufficientDependencyServiceAccessPermissionException;
4719
+ exports.InsufficientDependencyServiceAccessPermissionException$ = InsufficientDependencyServiceAccessPermissionException$;
4720
+ exports.InsufficientEncryptionPolicyException = InsufficientEncryptionPolicyException;
4721
+ exports.InsufficientEncryptionPolicyException$ = InsufficientEncryptionPolicyException$;
4722
+ exports.InsufficientIAMAccessPermissionException = InsufficientIAMAccessPermissionException;
4723
+ exports.InsufficientIAMAccessPermissionException$ = InsufficientIAMAccessPermissionException$;
4724
+ exports.InsufficientS3BucketPolicyException = InsufficientS3BucketPolicyException;
4725
+ exports.InsufficientS3BucketPolicyException$ = InsufficientS3BucketPolicyException$;
4726
+ exports.InsufficientSnsTopicPolicyException = InsufficientSnsTopicPolicyException;
4727
+ exports.InsufficientSnsTopicPolicyException$ = InsufficientSnsTopicPolicyException$;
4728
+ exports.InvalidCloudWatchLogsLogGroupArnException = InvalidCloudWatchLogsLogGroupArnException;
4729
+ exports.InvalidCloudWatchLogsLogGroupArnException$ = InvalidCloudWatchLogsLogGroupArnException$;
4730
+ exports.InvalidCloudWatchLogsRoleArnException = InvalidCloudWatchLogsRoleArnException;
4731
+ exports.InvalidCloudWatchLogsRoleArnException$ = InvalidCloudWatchLogsRoleArnException$;
4732
+ exports.InvalidDateRangeException = InvalidDateRangeException;
4733
+ exports.InvalidDateRangeException$ = InvalidDateRangeException$;
4734
+ exports.InvalidEventCategoryException = InvalidEventCategoryException;
4735
+ exports.InvalidEventCategoryException$ = InvalidEventCategoryException$;
4736
+ exports.InvalidEventDataStoreCategoryException = InvalidEventDataStoreCategoryException;
4737
+ exports.InvalidEventDataStoreCategoryException$ = InvalidEventDataStoreCategoryException$;
4738
+ exports.InvalidEventDataStoreStatusException = InvalidEventDataStoreStatusException;
4739
+ exports.InvalidEventDataStoreStatusException$ = InvalidEventDataStoreStatusException$;
4740
+ exports.InvalidEventSelectorsException = InvalidEventSelectorsException;
4741
+ exports.InvalidEventSelectorsException$ = InvalidEventSelectorsException$;
4742
+ exports.InvalidHomeRegionException = InvalidHomeRegionException;
4743
+ exports.InvalidHomeRegionException$ = InvalidHomeRegionException$;
4744
+ exports.InvalidImportSourceException = InvalidImportSourceException;
4745
+ exports.InvalidImportSourceException$ = InvalidImportSourceException$;
4746
+ exports.InvalidInsightSelectorsException = InvalidInsightSelectorsException;
4747
+ exports.InvalidInsightSelectorsException$ = InvalidInsightSelectorsException$;
4748
+ exports.InvalidKmsKeyIdException = InvalidKmsKeyIdException;
4749
+ exports.InvalidKmsKeyIdException$ = InvalidKmsKeyIdException$;
4750
+ exports.InvalidLookupAttributesException = InvalidLookupAttributesException;
4751
+ exports.InvalidLookupAttributesException$ = InvalidLookupAttributesException$;
4752
+ exports.InvalidMaxResultsException = InvalidMaxResultsException;
4753
+ exports.InvalidMaxResultsException$ = InvalidMaxResultsException$;
4754
+ exports.InvalidNextTokenException = InvalidNextTokenException;
4755
+ exports.InvalidNextTokenException$ = InvalidNextTokenException$;
4756
+ exports.InvalidParameterCombinationException = InvalidParameterCombinationException;
4757
+ exports.InvalidParameterCombinationException$ = InvalidParameterCombinationException$;
4758
+ exports.InvalidParameterException = InvalidParameterException;
4759
+ exports.InvalidParameterException$ = InvalidParameterException$;
4760
+ exports.InvalidQueryStatementException = InvalidQueryStatementException;
4761
+ exports.InvalidQueryStatementException$ = InvalidQueryStatementException$;
4762
+ exports.InvalidQueryStatusException = InvalidQueryStatusException;
4763
+ exports.InvalidQueryStatusException$ = InvalidQueryStatusException$;
4764
+ exports.InvalidS3BucketNameException = InvalidS3BucketNameException;
4765
+ exports.InvalidS3BucketNameException$ = InvalidS3BucketNameException$;
4766
+ exports.InvalidS3PrefixException = InvalidS3PrefixException;
4767
+ exports.InvalidS3PrefixException$ = InvalidS3PrefixException$;
4768
+ exports.InvalidSnsTopicNameException = InvalidSnsTopicNameException;
4769
+ exports.InvalidSnsTopicNameException$ = InvalidSnsTopicNameException$;
4770
+ exports.InvalidSourceException = InvalidSourceException;
4771
+ exports.InvalidSourceException$ = InvalidSourceException$;
4772
+ exports.InvalidTagParameterException = InvalidTagParameterException;
4773
+ exports.InvalidTagParameterException$ = InvalidTagParameterException$;
4774
+ exports.InvalidTimeRangeException = InvalidTimeRangeException;
4775
+ exports.InvalidTimeRangeException$ = InvalidTimeRangeException$;
4776
+ exports.InvalidTokenException = InvalidTokenException;
4777
+ exports.InvalidTokenException$ = InvalidTokenException$;
4778
+ exports.InvalidTrailNameException = InvalidTrailNameException;
4779
+ exports.InvalidTrailNameException$ = InvalidTrailNameException$;
4780
+ exports.KmsException = KmsException;
4781
+ exports.KmsException$ = KmsException$;
4782
+ exports.KmsKeyDisabledException = KmsKeyDisabledException;
4783
+ exports.KmsKeyDisabledException$ = KmsKeyDisabledException$;
4784
+ exports.KmsKeyNotFoundException = KmsKeyNotFoundException;
4785
+ exports.KmsKeyNotFoundException$ = KmsKeyNotFoundException$;
4786
+ exports.ListChannels$ = ListChannels$;
1108
4787
  exports.ListChannelsCommand = ListChannelsCommand;
4788
+ exports.ListChannelsRequest$ = ListChannelsRequest$;
4789
+ exports.ListChannelsResponse$ = ListChannelsResponse$;
4790
+ exports.ListDashboards$ = ListDashboards$;
1109
4791
  exports.ListDashboardsCommand = ListDashboardsCommand;
4792
+ exports.ListDashboardsRequest$ = ListDashboardsRequest$;
4793
+ exports.ListDashboardsResponse$ = ListDashboardsResponse$;
4794
+ exports.ListEventDataStores$ = ListEventDataStores$;
1110
4795
  exports.ListEventDataStoresCommand = ListEventDataStoresCommand;
4796
+ exports.ListEventDataStoresRequest$ = ListEventDataStoresRequest$;
4797
+ exports.ListEventDataStoresResponse$ = ListEventDataStoresResponse$;
4798
+ exports.ListImportFailures$ = ListImportFailures$;
1111
4799
  exports.ListImportFailuresCommand = ListImportFailuresCommand;
4800
+ exports.ListImportFailuresRequest$ = ListImportFailuresRequest$;
4801
+ exports.ListImportFailuresResponse$ = ListImportFailuresResponse$;
4802
+ exports.ListImports$ = ListImports$;
1112
4803
  exports.ListImportsCommand = ListImportsCommand;
4804
+ exports.ListImportsRequest$ = ListImportsRequest$;
4805
+ exports.ListImportsResponse$ = ListImportsResponse$;
4806
+ exports.ListInsightsData$ = ListInsightsData$;
1113
4807
  exports.ListInsightsDataCommand = ListInsightsDataCommand;
1114
4808
  exports.ListInsightsDataDimensionKey = ListInsightsDataDimensionKey;
4809
+ exports.ListInsightsDataRequest$ = ListInsightsDataRequest$;
4810
+ exports.ListInsightsDataResponse$ = ListInsightsDataResponse$;
1115
4811
  exports.ListInsightsDataType = ListInsightsDataType;
4812
+ exports.ListInsightsMetricData$ = ListInsightsMetricData$;
1116
4813
  exports.ListInsightsMetricDataCommand = ListInsightsMetricDataCommand;
4814
+ exports.ListInsightsMetricDataRequest$ = ListInsightsMetricDataRequest$;
4815
+ exports.ListInsightsMetricDataResponse$ = ListInsightsMetricDataResponse$;
4816
+ exports.ListPublicKeys$ = ListPublicKeys$;
1117
4817
  exports.ListPublicKeysCommand = ListPublicKeysCommand;
4818
+ exports.ListPublicKeysRequest$ = ListPublicKeysRequest$;
4819
+ exports.ListPublicKeysResponse$ = ListPublicKeysResponse$;
4820
+ exports.ListQueries$ = ListQueries$;
1118
4821
  exports.ListQueriesCommand = ListQueriesCommand;
4822
+ exports.ListQueriesRequest$ = ListQueriesRequest$;
4823
+ exports.ListQueriesResponse$ = ListQueriesResponse$;
4824
+ exports.ListTags$ = ListTags$;
1119
4825
  exports.ListTagsCommand = ListTagsCommand;
4826
+ exports.ListTagsRequest$ = ListTagsRequest$;
4827
+ exports.ListTagsResponse$ = ListTagsResponse$;
4828
+ exports.ListTrails$ = ListTrails$;
1120
4829
  exports.ListTrailsCommand = ListTrailsCommand;
4830
+ exports.ListTrailsRequest$ = ListTrailsRequest$;
4831
+ exports.ListTrailsResponse$ = ListTrailsResponse$;
4832
+ exports.LookupAttribute$ = LookupAttribute$;
1121
4833
  exports.LookupAttributeKey = LookupAttributeKey;
4834
+ exports.LookupEvents$ = LookupEvents$;
1122
4835
  exports.LookupEventsCommand = LookupEventsCommand;
4836
+ exports.LookupEventsRequest$ = LookupEventsRequest$;
4837
+ exports.LookupEventsResponse$ = LookupEventsResponse$;
4838
+ exports.MaxConcurrentQueriesException = MaxConcurrentQueriesException;
4839
+ exports.MaxConcurrentQueriesException$ = MaxConcurrentQueriesException$;
1123
4840
  exports.MaxEventSize = MaxEventSize;
4841
+ exports.MaximumNumberOfTrailsExceededException = MaximumNumberOfTrailsExceededException;
4842
+ exports.MaximumNumberOfTrailsExceededException$ = MaximumNumberOfTrailsExceededException$;
4843
+ exports.NoManagementAccountSLRExistsException = NoManagementAccountSLRExistsException;
4844
+ exports.NoManagementAccountSLRExistsException$ = NoManagementAccountSLRExistsException$;
4845
+ exports.NotOrganizationManagementAccountException = NotOrganizationManagementAccountException;
4846
+ exports.NotOrganizationManagementAccountException$ = NotOrganizationManagementAccountException$;
4847
+ exports.NotOrganizationMasterAccountException = NotOrganizationMasterAccountException;
4848
+ exports.NotOrganizationMasterAccountException$ = NotOrganizationMasterAccountException$;
4849
+ exports.OperationNotPermittedException = OperationNotPermittedException;
4850
+ exports.OperationNotPermittedException$ = OperationNotPermittedException$;
4851
+ exports.OrganizationNotInAllFeaturesModeException = OrganizationNotInAllFeaturesModeException;
4852
+ exports.OrganizationNotInAllFeaturesModeException$ = OrganizationNotInAllFeaturesModeException$;
4853
+ exports.OrganizationsNotInUseException = OrganizationsNotInUseException;
4854
+ exports.OrganizationsNotInUseException$ = OrganizationsNotInUseException$;
4855
+ exports.PartitionKey$ = PartitionKey$;
4856
+ exports.PublicKey$ = PublicKey$;
4857
+ exports.PutEventConfiguration$ = PutEventConfiguration$;
1124
4858
  exports.PutEventConfigurationCommand = PutEventConfigurationCommand;
4859
+ exports.PutEventConfigurationRequest$ = PutEventConfigurationRequest$;
4860
+ exports.PutEventConfigurationResponse$ = PutEventConfigurationResponse$;
4861
+ exports.PutEventSelectors$ = PutEventSelectors$;
1125
4862
  exports.PutEventSelectorsCommand = PutEventSelectorsCommand;
4863
+ exports.PutEventSelectorsRequest$ = PutEventSelectorsRequest$;
4864
+ exports.PutEventSelectorsResponse$ = PutEventSelectorsResponse$;
4865
+ exports.PutInsightSelectors$ = PutInsightSelectors$;
1126
4866
  exports.PutInsightSelectorsCommand = PutInsightSelectorsCommand;
4867
+ exports.PutInsightSelectorsRequest$ = PutInsightSelectorsRequest$;
4868
+ exports.PutInsightSelectorsResponse$ = PutInsightSelectorsResponse$;
4869
+ exports.PutResourcePolicy$ = PutResourcePolicy$;
1127
4870
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
4871
+ exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
4872
+ exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
4873
+ exports.Query$ = Query$;
4874
+ exports.QueryIdNotFoundException = QueryIdNotFoundException;
4875
+ exports.QueryIdNotFoundException$ = QueryIdNotFoundException$;
4876
+ exports.QueryStatistics$ = QueryStatistics$;
4877
+ exports.QueryStatisticsForDescribeQuery$ = QueryStatisticsForDescribeQuery$;
1128
4878
  exports.QueryStatus = QueryStatus;
1129
4879
  exports.ReadWriteType = ReadWriteType;
4880
+ exports.RefreshSchedule$ = RefreshSchedule$;
4881
+ exports.RefreshScheduleFrequency$ = RefreshScheduleFrequency$;
1130
4882
  exports.RefreshScheduleFrequencyUnit = RefreshScheduleFrequencyUnit;
1131
4883
  exports.RefreshScheduleStatus = RefreshScheduleStatus;
4884
+ exports.RegisterOrganizationDelegatedAdmin$ = RegisterOrganizationDelegatedAdmin$;
1132
4885
  exports.RegisterOrganizationDelegatedAdminCommand = RegisterOrganizationDelegatedAdminCommand;
4886
+ exports.RegisterOrganizationDelegatedAdminRequest$ = RegisterOrganizationDelegatedAdminRequest$;
4887
+ exports.RegisterOrganizationDelegatedAdminResponse$ = RegisterOrganizationDelegatedAdminResponse$;
4888
+ exports.RemoveTags$ = RemoveTags$;
1133
4889
  exports.RemoveTagsCommand = RemoveTagsCommand;
4890
+ exports.RemoveTagsRequest$ = RemoveTagsRequest$;
4891
+ exports.RemoveTagsResponse$ = RemoveTagsResponse$;
4892
+ exports.RequestWidget$ = RequestWidget$;
4893
+ exports.Resource$ = Resource$;
4894
+ exports.ResourceARNNotValidException = ResourceARNNotValidException;
4895
+ exports.ResourceARNNotValidException$ = ResourceARNNotValidException$;
4896
+ exports.ResourceNotFoundException = ResourceNotFoundException;
4897
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
4898
+ exports.ResourcePolicyNotFoundException = ResourcePolicyNotFoundException;
4899
+ exports.ResourcePolicyNotFoundException$ = ResourcePolicyNotFoundException$;
4900
+ exports.ResourcePolicyNotValidException = ResourcePolicyNotValidException;
4901
+ exports.ResourcePolicyNotValidException$ = ResourcePolicyNotValidException$;
4902
+ exports.ResourceTag$ = ResourceTag$;
4903
+ exports.ResourceTypeNotSupportedException = ResourceTypeNotSupportedException;
4904
+ exports.ResourceTypeNotSupportedException$ = ResourceTypeNotSupportedException$;
4905
+ exports.RestoreEventDataStore$ = RestoreEventDataStore$;
1134
4906
  exports.RestoreEventDataStoreCommand = RestoreEventDataStoreCommand;
4907
+ exports.RestoreEventDataStoreRequest$ = RestoreEventDataStoreRequest$;
4908
+ exports.RestoreEventDataStoreResponse$ = RestoreEventDataStoreResponse$;
4909
+ exports.S3BucketDoesNotExistException = S3BucketDoesNotExistException;
4910
+ exports.S3BucketDoesNotExistException$ = S3BucketDoesNotExistException$;
4911
+ exports.S3ImportSource$ = S3ImportSource$;
4912
+ exports.SearchSampleQueries$ = SearchSampleQueries$;
1135
4913
  exports.SearchSampleQueriesCommand = SearchSampleQueriesCommand;
4914
+ exports.SearchSampleQueriesRequest$ = SearchSampleQueriesRequest$;
4915
+ exports.SearchSampleQueriesResponse$ = SearchSampleQueriesResponse$;
4916
+ exports.SearchSampleQueriesSearchResult$ = SearchSampleQueriesSearchResult$;
4917
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
4918
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
4919
+ exports.SourceConfig$ = SourceConfig$;
1136
4920
  exports.SourceEventCategory = SourceEventCategory;
4921
+ exports.StartDashboardRefresh$ = StartDashboardRefresh$;
1137
4922
  exports.StartDashboardRefreshCommand = StartDashboardRefreshCommand;
4923
+ exports.StartDashboardRefreshRequest$ = StartDashboardRefreshRequest$;
4924
+ exports.StartDashboardRefreshResponse$ = StartDashboardRefreshResponse$;
4925
+ exports.StartEventDataStoreIngestion$ = StartEventDataStoreIngestion$;
1138
4926
  exports.StartEventDataStoreIngestionCommand = StartEventDataStoreIngestionCommand;
4927
+ exports.StartEventDataStoreIngestionRequest$ = StartEventDataStoreIngestionRequest$;
4928
+ exports.StartEventDataStoreIngestionResponse$ = StartEventDataStoreIngestionResponse$;
4929
+ exports.StartImport$ = StartImport$;
1139
4930
  exports.StartImportCommand = StartImportCommand;
4931
+ exports.StartImportRequest$ = StartImportRequest$;
4932
+ exports.StartImportResponse$ = StartImportResponse$;
4933
+ exports.StartLogging$ = StartLogging$;
1140
4934
  exports.StartLoggingCommand = StartLoggingCommand;
4935
+ exports.StartLoggingRequest$ = StartLoggingRequest$;
4936
+ exports.StartLoggingResponse$ = StartLoggingResponse$;
4937
+ exports.StartQuery$ = StartQuery$;
1141
4938
  exports.StartQueryCommand = StartQueryCommand;
4939
+ exports.StartQueryRequest$ = StartQueryRequest$;
4940
+ exports.StartQueryResponse$ = StartQueryResponse$;
4941
+ exports.StopEventDataStoreIngestion$ = StopEventDataStoreIngestion$;
1142
4942
  exports.StopEventDataStoreIngestionCommand = StopEventDataStoreIngestionCommand;
4943
+ exports.StopEventDataStoreIngestionRequest$ = StopEventDataStoreIngestionRequest$;
4944
+ exports.StopEventDataStoreIngestionResponse$ = StopEventDataStoreIngestionResponse$;
4945
+ exports.StopImport$ = StopImport$;
1143
4946
  exports.StopImportCommand = StopImportCommand;
4947
+ exports.StopImportRequest$ = StopImportRequest$;
4948
+ exports.StopImportResponse$ = StopImportResponse$;
4949
+ exports.StopLogging$ = StopLogging$;
1144
4950
  exports.StopLoggingCommand = StopLoggingCommand;
4951
+ exports.StopLoggingRequest$ = StopLoggingRequest$;
4952
+ exports.StopLoggingResponse$ = StopLoggingResponse$;
4953
+ exports.Tag$ = Tag$;
4954
+ exports.TagsLimitExceededException = TagsLimitExceededException;
4955
+ exports.TagsLimitExceededException$ = TagsLimitExceededException$;
1145
4956
  exports.Template = Template;
4957
+ exports.ThrottlingException = ThrottlingException;
4958
+ exports.ThrottlingException$ = ThrottlingException$;
4959
+ exports.Trail$ = Trail$;
4960
+ exports.TrailAlreadyExistsException = TrailAlreadyExistsException;
4961
+ exports.TrailAlreadyExistsException$ = TrailAlreadyExistsException$;
4962
+ exports.TrailInfo$ = TrailInfo$;
4963
+ exports.TrailNotFoundException = TrailNotFoundException;
4964
+ exports.TrailNotFoundException$ = TrailNotFoundException$;
4965
+ exports.TrailNotProvidedException = TrailNotProvidedException;
4966
+ exports.TrailNotProvidedException$ = TrailNotProvidedException$;
1146
4967
  exports.Type = Type;
4968
+ exports.UnsupportedOperationException = UnsupportedOperationException;
4969
+ exports.UnsupportedOperationException$ = UnsupportedOperationException$;
4970
+ exports.UpdateChannel$ = UpdateChannel$;
1147
4971
  exports.UpdateChannelCommand = UpdateChannelCommand;
4972
+ exports.UpdateChannelRequest$ = UpdateChannelRequest$;
4973
+ exports.UpdateChannelResponse$ = UpdateChannelResponse$;
4974
+ exports.UpdateDashboard$ = UpdateDashboard$;
1148
4975
  exports.UpdateDashboardCommand = UpdateDashboardCommand;
4976
+ exports.UpdateDashboardRequest$ = UpdateDashboardRequest$;
4977
+ exports.UpdateDashboardResponse$ = UpdateDashboardResponse$;
4978
+ exports.UpdateEventDataStore$ = UpdateEventDataStore$;
1149
4979
  exports.UpdateEventDataStoreCommand = UpdateEventDataStoreCommand;
4980
+ exports.UpdateEventDataStoreRequest$ = UpdateEventDataStoreRequest$;
4981
+ exports.UpdateEventDataStoreResponse$ = UpdateEventDataStoreResponse$;
4982
+ exports.UpdateTrail$ = UpdateTrail$;
1150
4983
  exports.UpdateTrailCommand = UpdateTrailCommand;
4984
+ exports.UpdateTrailRequest$ = UpdateTrailRequest$;
4985
+ exports.UpdateTrailResponse$ = UpdateTrailResponse$;
4986
+ exports.Widget$ = Widget$;
4987
+ exports.errorTypeRegistries = errorTypeRegistries;
1151
4988
  exports.paginateGetQueryResults = paginateGetQueryResults;
1152
4989
  exports.paginateListChannels = paginateListChannels;
1153
4990
  exports.paginateListEventDataStores = paginateListEventDataStores;