@aws-sdk/client-cloudtrail 3.1068.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +232 -252
- package/dist-cjs/models/CloudTrailServiceException.js +4 -8
- package/dist-cjs/models/errors.js +173 -263
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +677 -444
- package/package.json +8 -8
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.InvalidCloudWatchLogsRoleArnException = exports.InvalidCloudWatchLogsLogGroupArnException = exports.InsufficientSnsTopicPolicyException = exports.InsufficientS3BucketPolicyException = exports.CloudWatchLogsDeliveryUnavailableException = exports.CloudTrailInvalidClientTokenIdException = exports.ThrottlingException = exports.OrganizationsNotInUseException = exports.OrganizationNotInAllFeaturesModeException = exports.KmsKeyNotFoundException = exports.KmsException = exports.InvalidKmsKeyIdException = exports.InvalidEventSelectorsException = exports.InsufficientDependencyServiceAccessPermissionException = exports.EventDataStoreMaxLimitExceededException = exports.EventDataStoreAlreadyExistsException = exports.CloudTrailAccessNotEnabledException = exports.ServiceQuotaExceededException = exports.InvalidQueryStatementException = exports.InsufficientEncryptionPolicyException = exports.InvalidSourceException = exports.InvalidEventDataStoreCategoryException = exports.ChannelMaxLimitExceededException = exports.ChannelExistsForEDSException = exports.ChannelAlreadyExistsException = exports.CannotDelegateManagementAccountException = exports.QueryIdNotFoundException = exports.InvalidParameterException = exports.InactiveQueryException = exports.UnsupportedOperationException = exports.TagsLimitExceededException = exports.ResourceTypeNotSupportedException = exports.ResourceNotFoundException = exports.OperationNotPermittedException = exports.NotOrganizationMasterAccountException = exports.NoManagementAccountSLRExistsException = exports.InvalidTrailNameException = exports.InvalidTagParameterException = exports.InactiveEventDataStoreException = exports.EventDataStoreNotFoundException = exports.EventDataStoreARNInvalidException = exports.ConflictException = exports.CloudTrailARNInvalidException = exports.ChannelNotFoundException = exports.ChannelARNInvalidException = exports.AccountRegisteredException = exports.AccountNotRegisteredException = exports.AccountNotFoundException = exports.AccountHasOngoingImportException = exports.AccessDeniedException = void 0;
|
|
4
|
-
exports.MaxConcurrentQueriesException = exports.InvalidImportSourceException = exports.DelegatedAdminAccountLimitExceededException = exports.ResourcePolicyNotValidException = exports.InvalidInsightSelectorsException = exports.InsufficientIAMAccessPermissionException = exports.InvalidLookupAttributesException = exports.InvalidEventCategoryException = exports.InvalidQueryStatusException = exports.InvalidDateRangeException = exports.InvalidTokenException = exports.InvalidTimeRangeException = exports.InvalidNextTokenException = exports.InvalidMaxResultsException = exports.InsightNotEnabledException = exports.ImportNotFoundException = exports.InvalidEventDataStoreStatusException = exports.GenerateResponseException = exports.ConcurrentModificationException = exports.NotOrganizationManagementAccountException = exports.TrailNotFoundException = exports.InvalidHomeRegionException = exports.ResourcePolicyNotFoundException = exports.ResourceARNNotValidException = exports.EventDataStoreTerminationProtectedException = exports.EventDataStoreHasOngoingImportException = exports.EventDataStoreFederationEnabledException = exports.TrailNotProvidedException = exports.TrailAlreadyExistsException = exports.S3BucketDoesNotExistException = exports.MaximumNumberOfTrailsExceededException = exports.KmsKeyDisabledException = exports.InvalidSnsTopicNameException = exports.InvalidS3PrefixException = exports.InvalidS3BucketNameException = exports.InvalidParameterCombinationException = void 0;
|
|
5
|
-
const CloudTrailServiceException_1 = require("./CloudTrailServiceException");
|
|
6
|
-
class AccessDeniedException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1
|
+
const { CloudTrailServiceException: __BaseException } = require("./CloudTrailServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
7
3
|
name = "AccessDeniedException";
|
|
8
4
|
$fault = "client";
|
|
9
5
|
Message;
|
|
@@ -16,9 +12,8 @@ class AccessDeniedException extends CloudTrailServiceException_1.CloudTrailServi
|
|
|
16
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
17
13
|
this.Message = opts.Message;
|
|
18
14
|
}
|
|
19
|
-
}
|
|
20
|
-
exports.
|
|
21
|
-
class AccountHasOngoingImportException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
15
|
+
};
|
|
16
|
+
exports.AccountHasOngoingImportException = class AccountHasOngoingImportException extends __BaseException {
|
|
22
17
|
name = "AccountHasOngoingImportException";
|
|
23
18
|
$fault = "client";
|
|
24
19
|
Message;
|
|
@@ -31,9 +26,8 @@ class AccountHasOngoingImportException extends CloudTrailServiceException_1.Clou
|
|
|
31
26
|
Object.setPrototypeOf(this, AccountHasOngoingImportException.prototype);
|
|
32
27
|
this.Message = opts.Message;
|
|
33
28
|
}
|
|
34
|
-
}
|
|
35
|
-
exports.
|
|
36
|
-
class AccountNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
29
|
+
};
|
|
30
|
+
exports.AccountNotFoundException = class AccountNotFoundException extends __BaseException {
|
|
37
31
|
name = "AccountNotFoundException";
|
|
38
32
|
$fault = "client";
|
|
39
33
|
Message;
|
|
@@ -46,9 +40,8 @@ class AccountNotFoundException extends CloudTrailServiceException_1.CloudTrailSe
|
|
|
46
40
|
Object.setPrototypeOf(this, AccountNotFoundException.prototype);
|
|
47
41
|
this.Message = opts.Message;
|
|
48
42
|
}
|
|
49
|
-
}
|
|
50
|
-
exports.
|
|
51
|
-
class AccountNotRegisteredException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
43
|
+
};
|
|
44
|
+
exports.AccountNotRegisteredException = class AccountNotRegisteredException extends __BaseException {
|
|
52
45
|
name = "AccountNotRegisteredException";
|
|
53
46
|
$fault = "client";
|
|
54
47
|
Message;
|
|
@@ -61,9 +54,8 @@ class AccountNotRegisteredException extends CloudTrailServiceException_1.CloudTr
|
|
|
61
54
|
Object.setPrototypeOf(this, AccountNotRegisteredException.prototype);
|
|
62
55
|
this.Message = opts.Message;
|
|
63
56
|
}
|
|
64
|
-
}
|
|
65
|
-
exports.
|
|
66
|
-
class AccountRegisteredException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
57
|
+
};
|
|
58
|
+
exports.AccountRegisteredException = class AccountRegisteredException extends __BaseException {
|
|
67
59
|
name = "AccountRegisteredException";
|
|
68
60
|
$fault = "client";
|
|
69
61
|
Message;
|
|
@@ -76,9 +68,8 @@ class AccountRegisteredException extends CloudTrailServiceException_1.CloudTrail
|
|
|
76
68
|
Object.setPrototypeOf(this, AccountRegisteredException.prototype);
|
|
77
69
|
this.Message = opts.Message;
|
|
78
70
|
}
|
|
79
|
-
}
|
|
80
|
-
exports.
|
|
81
|
-
class ChannelARNInvalidException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
71
|
+
};
|
|
72
|
+
exports.ChannelARNInvalidException = class ChannelARNInvalidException extends __BaseException {
|
|
82
73
|
name = "ChannelARNInvalidException";
|
|
83
74
|
$fault = "client";
|
|
84
75
|
Message;
|
|
@@ -91,9 +82,8 @@ class ChannelARNInvalidException extends CloudTrailServiceException_1.CloudTrail
|
|
|
91
82
|
Object.setPrototypeOf(this, ChannelARNInvalidException.prototype);
|
|
92
83
|
this.Message = opts.Message;
|
|
93
84
|
}
|
|
94
|
-
}
|
|
95
|
-
exports.
|
|
96
|
-
class ChannelNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.ChannelNotFoundException = class ChannelNotFoundException extends __BaseException {
|
|
97
87
|
name = "ChannelNotFoundException";
|
|
98
88
|
$fault = "client";
|
|
99
89
|
Message;
|
|
@@ -106,9 +96,8 @@ class ChannelNotFoundException extends CloudTrailServiceException_1.CloudTrailSe
|
|
|
106
96
|
Object.setPrototypeOf(this, ChannelNotFoundException.prototype);
|
|
107
97
|
this.Message = opts.Message;
|
|
108
98
|
}
|
|
109
|
-
}
|
|
110
|
-
exports.
|
|
111
|
-
class CloudTrailARNInvalidException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
99
|
+
};
|
|
100
|
+
exports.CloudTrailARNInvalidException = class CloudTrailARNInvalidException extends __BaseException {
|
|
112
101
|
name = "CloudTrailARNInvalidException";
|
|
113
102
|
$fault = "client";
|
|
114
103
|
Message;
|
|
@@ -121,9 +110,8 @@ class CloudTrailARNInvalidException extends CloudTrailServiceException_1.CloudTr
|
|
|
121
110
|
Object.setPrototypeOf(this, CloudTrailARNInvalidException.prototype);
|
|
122
111
|
this.Message = opts.Message;
|
|
123
112
|
}
|
|
124
|
-
}
|
|
125
|
-
exports.
|
|
126
|
-
class ConflictException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
113
|
+
};
|
|
114
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
127
115
|
name = "ConflictException";
|
|
128
116
|
$fault = "client";
|
|
129
117
|
Message;
|
|
@@ -136,9 +124,8 @@ class ConflictException extends CloudTrailServiceException_1.CloudTrailServiceEx
|
|
|
136
124
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
137
125
|
this.Message = opts.Message;
|
|
138
126
|
}
|
|
139
|
-
}
|
|
140
|
-
exports.
|
|
141
|
-
class EventDataStoreARNInvalidException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
127
|
+
};
|
|
128
|
+
exports.EventDataStoreARNInvalidException = class EventDataStoreARNInvalidException extends __BaseException {
|
|
142
129
|
name = "EventDataStoreARNInvalidException";
|
|
143
130
|
$fault = "client";
|
|
144
131
|
Message;
|
|
@@ -151,9 +138,8 @@ class EventDataStoreARNInvalidException extends CloudTrailServiceException_1.Clo
|
|
|
151
138
|
Object.setPrototypeOf(this, EventDataStoreARNInvalidException.prototype);
|
|
152
139
|
this.Message = opts.Message;
|
|
153
140
|
}
|
|
154
|
-
}
|
|
155
|
-
exports.
|
|
156
|
-
class EventDataStoreNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
141
|
+
};
|
|
142
|
+
exports.EventDataStoreNotFoundException = class EventDataStoreNotFoundException extends __BaseException {
|
|
157
143
|
name = "EventDataStoreNotFoundException";
|
|
158
144
|
$fault = "client";
|
|
159
145
|
Message;
|
|
@@ -166,9 +152,8 @@ class EventDataStoreNotFoundException extends CloudTrailServiceException_1.Cloud
|
|
|
166
152
|
Object.setPrototypeOf(this, EventDataStoreNotFoundException.prototype);
|
|
167
153
|
this.Message = opts.Message;
|
|
168
154
|
}
|
|
169
|
-
}
|
|
170
|
-
exports.
|
|
171
|
-
class InactiveEventDataStoreException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
155
|
+
};
|
|
156
|
+
exports.InactiveEventDataStoreException = class InactiveEventDataStoreException extends __BaseException {
|
|
172
157
|
name = "InactiveEventDataStoreException";
|
|
173
158
|
$fault = "client";
|
|
174
159
|
Message;
|
|
@@ -181,9 +166,8 @@ class InactiveEventDataStoreException extends CloudTrailServiceException_1.Cloud
|
|
|
181
166
|
Object.setPrototypeOf(this, InactiveEventDataStoreException.prototype);
|
|
182
167
|
this.Message = opts.Message;
|
|
183
168
|
}
|
|
184
|
-
}
|
|
185
|
-
exports.
|
|
186
|
-
class InvalidTagParameterException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
169
|
+
};
|
|
170
|
+
exports.InvalidTagParameterException = class InvalidTagParameterException extends __BaseException {
|
|
187
171
|
name = "InvalidTagParameterException";
|
|
188
172
|
$fault = "client";
|
|
189
173
|
Message;
|
|
@@ -196,9 +180,8 @@ class InvalidTagParameterException extends CloudTrailServiceException_1.CloudTra
|
|
|
196
180
|
Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
|
|
197
181
|
this.Message = opts.Message;
|
|
198
182
|
}
|
|
199
|
-
}
|
|
200
|
-
exports.
|
|
201
|
-
class InvalidTrailNameException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
183
|
+
};
|
|
184
|
+
exports.InvalidTrailNameException = class InvalidTrailNameException extends __BaseException {
|
|
202
185
|
name = "InvalidTrailNameException";
|
|
203
186
|
$fault = "client";
|
|
204
187
|
Message;
|
|
@@ -211,9 +194,8 @@ class InvalidTrailNameException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
211
194
|
Object.setPrototypeOf(this, InvalidTrailNameException.prototype);
|
|
212
195
|
this.Message = opts.Message;
|
|
213
196
|
}
|
|
214
|
-
}
|
|
215
|
-
exports.
|
|
216
|
-
class NoManagementAccountSLRExistsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
197
|
+
};
|
|
198
|
+
exports.NoManagementAccountSLRExistsException = class NoManagementAccountSLRExistsException extends __BaseException {
|
|
217
199
|
name = "NoManagementAccountSLRExistsException";
|
|
218
200
|
$fault = "client";
|
|
219
201
|
Message;
|
|
@@ -226,9 +208,8 @@ class NoManagementAccountSLRExistsException extends CloudTrailServiceException_1
|
|
|
226
208
|
Object.setPrototypeOf(this, NoManagementAccountSLRExistsException.prototype);
|
|
227
209
|
this.Message = opts.Message;
|
|
228
210
|
}
|
|
229
|
-
}
|
|
230
|
-
exports.
|
|
231
|
-
class NotOrganizationMasterAccountException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
211
|
+
};
|
|
212
|
+
exports.NotOrganizationMasterAccountException = class NotOrganizationMasterAccountException extends __BaseException {
|
|
232
213
|
name = "NotOrganizationMasterAccountException";
|
|
233
214
|
$fault = "client";
|
|
234
215
|
Message;
|
|
@@ -241,9 +222,8 @@ class NotOrganizationMasterAccountException extends CloudTrailServiceException_1
|
|
|
241
222
|
Object.setPrototypeOf(this, NotOrganizationMasterAccountException.prototype);
|
|
242
223
|
this.Message = opts.Message;
|
|
243
224
|
}
|
|
244
|
-
}
|
|
245
|
-
exports.
|
|
246
|
-
class OperationNotPermittedException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
225
|
+
};
|
|
226
|
+
exports.OperationNotPermittedException = class OperationNotPermittedException extends __BaseException {
|
|
247
227
|
name = "OperationNotPermittedException";
|
|
248
228
|
$fault = "client";
|
|
249
229
|
Message;
|
|
@@ -256,9 +236,8 @@ class OperationNotPermittedException extends CloudTrailServiceException_1.CloudT
|
|
|
256
236
|
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
257
237
|
this.Message = opts.Message;
|
|
258
238
|
}
|
|
259
|
-
}
|
|
260
|
-
exports.
|
|
261
|
-
class ResourceNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
239
|
+
};
|
|
240
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
262
241
|
name = "ResourceNotFoundException";
|
|
263
242
|
$fault = "client";
|
|
264
243
|
Message;
|
|
@@ -271,9 +250,8 @@ class ResourceNotFoundException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
271
250
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
272
251
|
this.Message = opts.Message;
|
|
273
252
|
}
|
|
274
|
-
}
|
|
275
|
-
exports.
|
|
276
|
-
class ResourceTypeNotSupportedException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
253
|
+
};
|
|
254
|
+
exports.ResourceTypeNotSupportedException = class ResourceTypeNotSupportedException extends __BaseException {
|
|
277
255
|
name = "ResourceTypeNotSupportedException";
|
|
278
256
|
$fault = "client";
|
|
279
257
|
Message;
|
|
@@ -286,9 +264,8 @@ class ResourceTypeNotSupportedException extends CloudTrailServiceException_1.Clo
|
|
|
286
264
|
Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
|
|
287
265
|
this.Message = opts.Message;
|
|
288
266
|
}
|
|
289
|
-
}
|
|
290
|
-
exports.
|
|
291
|
-
class TagsLimitExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
267
|
+
};
|
|
268
|
+
exports.TagsLimitExceededException = class TagsLimitExceededException extends __BaseException {
|
|
292
269
|
name = "TagsLimitExceededException";
|
|
293
270
|
$fault = "client";
|
|
294
271
|
Message;
|
|
@@ -301,9 +278,8 @@ class TagsLimitExceededException extends CloudTrailServiceException_1.CloudTrail
|
|
|
301
278
|
Object.setPrototypeOf(this, TagsLimitExceededException.prototype);
|
|
302
279
|
this.Message = opts.Message;
|
|
303
280
|
}
|
|
304
|
-
}
|
|
305
|
-
exports.
|
|
306
|
-
class UnsupportedOperationException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
281
|
+
};
|
|
282
|
+
exports.UnsupportedOperationException = class UnsupportedOperationException extends __BaseException {
|
|
307
283
|
name = "UnsupportedOperationException";
|
|
308
284
|
$fault = "client";
|
|
309
285
|
Message;
|
|
@@ -316,9 +292,8 @@ class UnsupportedOperationException extends CloudTrailServiceException_1.CloudTr
|
|
|
316
292
|
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
317
293
|
this.Message = opts.Message;
|
|
318
294
|
}
|
|
319
|
-
}
|
|
320
|
-
exports.
|
|
321
|
-
class InactiveQueryException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
295
|
+
};
|
|
296
|
+
exports.InactiveQueryException = class InactiveQueryException extends __BaseException {
|
|
322
297
|
name = "InactiveQueryException";
|
|
323
298
|
$fault = "client";
|
|
324
299
|
Message;
|
|
@@ -331,9 +306,8 @@ class InactiveQueryException extends CloudTrailServiceException_1.CloudTrailServ
|
|
|
331
306
|
Object.setPrototypeOf(this, InactiveQueryException.prototype);
|
|
332
307
|
this.Message = opts.Message;
|
|
333
308
|
}
|
|
334
|
-
}
|
|
335
|
-
exports.
|
|
336
|
-
class InvalidParameterException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
309
|
+
};
|
|
310
|
+
exports.InvalidParameterException = class InvalidParameterException extends __BaseException {
|
|
337
311
|
name = "InvalidParameterException";
|
|
338
312
|
$fault = "client";
|
|
339
313
|
Message;
|
|
@@ -346,9 +320,8 @@ class InvalidParameterException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
346
320
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
347
321
|
this.Message = opts.Message;
|
|
348
322
|
}
|
|
349
|
-
}
|
|
350
|
-
exports.
|
|
351
|
-
class QueryIdNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
323
|
+
};
|
|
324
|
+
exports.QueryIdNotFoundException = class QueryIdNotFoundException extends __BaseException {
|
|
352
325
|
name = "QueryIdNotFoundException";
|
|
353
326
|
$fault = "client";
|
|
354
327
|
Message;
|
|
@@ -361,9 +334,8 @@ class QueryIdNotFoundException extends CloudTrailServiceException_1.CloudTrailSe
|
|
|
361
334
|
Object.setPrototypeOf(this, QueryIdNotFoundException.prototype);
|
|
362
335
|
this.Message = opts.Message;
|
|
363
336
|
}
|
|
364
|
-
}
|
|
365
|
-
exports.
|
|
366
|
-
class CannotDelegateManagementAccountException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
337
|
+
};
|
|
338
|
+
exports.CannotDelegateManagementAccountException = class CannotDelegateManagementAccountException extends __BaseException {
|
|
367
339
|
name = "CannotDelegateManagementAccountException";
|
|
368
340
|
$fault = "client";
|
|
369
341
|
Message;
|
|
@@ -376,9 +348,8 @@ class CannotDelegateManagementAccountException extends CloudTrailServiceExceptio
|
|
|
376
348
|
Object.setPrototypeOf(this, CannotDelegateManagementAccountException.prototype);
|
|
377
349
|
this.Message = opts.Message;
|
|
378
350
|
}
|
|
379
|
-
}
|
|
380
|
-
exports.
|
|
381
|
-
class ChannelAlreadyExistsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
351
|
+
};
|
|
352
|
+
exports.ChannelAlreadyExistsException = class ChannelAlreadyExistsException extends __BaseException {
|
|
382
353
|
name = "ChannelAlreadyExistsException";
|
|
383
354
|
$fault = "client";
|
|
384
355
|
Message;
|
|
@@ -391,9 +362,8 @@ class ChannelAlreadyExistsException extends CloudTrailServiceException_1.CloudTr
|
|
|
391
362
|
Object.setPrototypeOf(this, ChannelAlreadyExistsException.prototype);
|
|
392
363
|
this.Message = opts.Message;
|
|
393
364
|
}
|
|
394
|
-
}
|
|
395
|
-
exports.
|
|
396
|
-
class ChannelExistsForEDSException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
365
|
+
};
|
|
366
|
+
exports.ChannelExistsForEDSException = class ChannelExistsForEDSException extends __BaseException {
|
|
397
367
|
name = "ChannelExistsForEDSException";
|
|
398
368
|
$fault = "client";
|
|
399
369
|
Message;
|
|
@@ -406,9 +376,8 @@ class ChannelExistsForEDSException extends CloudTrailServiceException_1.CloudTra
|
|
|
406
376
|
Object.setPrototypeOf(this, ChannelExistsForEDSException.prototype);
|
|
407
377
|
this.Message = opts.Message;
|
|
408
378
|
}
|
|
409
|
-
}
|
|
410
|
-
exports.
|
|
411
|
-
class ChannelMaxLimitExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
379
|
+
};
|
|
380
|
+
exports.ChannelMaxLimitExceededException = class ChannelMaxLimitExceededException extends __BaseException {
|
|
412
381
|
name = "ChannelMaxLimitExceededException";
|
|
413
382
|
$fault = "client";
|
|
414
383
|
Message;
|
|
@@ -421,9 +390,8 @@ class ChannelMaxLimitExceededException extends CloudTrailServiceException_1.Clou
|
|
|
421
390
|
Object.setPrototypeOf(this, ChannelMaxLimitExceededException.prototype);
|
|
422
391
|
this.Message = opts.Message;
|
|
423
392
|
}
|
|
424
|
-
}
|
|
425
|
-
exports.
|
|
426
|
-
class InvalidEventDataStoreCategoryException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
393
|
+
};
|
|
394
|
+
exports.InvalidEventDataStoreCategoryException = class InvalidEventDataStoreCategoryException extends __BaseException {
|
|
427
395
|
name = "InvalidEventDataStoreCategoryException";
|
|
428
396
|
$fault = "client";
|
|
429
397
|
Message;
|
|
@@ -436,9 +404,8 @@ class InvalidEventDataStoreCategoryException extends CloudTrailServiceException_
|
|
|
436
404
|
Object.setPrototypeOf(this, InvalidEventDataStoreCategoryException.prototype);
|
|
437
405
|
this.Message = opts.Message;
|
|
438
406
|
}
|
|
439
|
-
}
|
|
440
|
-
exports.
|
|
441
|
-
class InvalidSourceException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
407
|
+
};
|
|
408
|
+
exports.InvalidSourceException = class InvalidSourceException extends __BaseException {
|
|
442
409
|
name = "InvalidSourceException";
|
|
443
410
|
$fault = "client";
|
|
444
411
|
Message;
|
|
@@ -451,9 +418,8 @@ class InvalidSourceException extends CloudTrailServiceException_1.CloudTrailServ
|
|
|
451
418
|
Object.setPrototypeOf(this, InvalidSourceException.prototype);
|
|
452
419
|
this.Message = opts.Message;
|
|
453
420
|
}
|
|
454
|
-
}
|
|
455
|
-
exports.
|
|
456
|
-
class InsufficientEncryptionPolicyException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
421
|
+
};
|
|
422
|
+
exports.InsufficientEncryptionPolicyException = class InsufficientEncryptionPolicyException extends __BaseException {
|
|
457
423
|
name = "InsufficientEncryptionPolicyException";
|
|
458
424
|
$fault = "client";
|
|
459
425
|
Message;
|
|
@@ -466,9 +432,8 @@ class InsufficientEncryptionPolicyException extends CloudTrailServiceException_1
|
|
|
466
432
|
Object.setPrototypeOf(this, InsufficientEncryptionPolicyException.prototype);
|
|
467
433
|
this.Message = opts.Message;
|
|
468
434
|
}
|
|
469
|
-
}
|
|
470
|
-
exports.
|
|
471
|
-
class InvalidQueryStatementException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
435
|
+
};
|
|
436
|
+
exports.InvalidQueryStatementException = class InvalidQueryStatementException extends __BaseException {
|
|
472
437
|
name = "InvalidQueryStatementException";
|
|
473
438
|
$fault = "client";
|
|
474
439
|
Message;
|
|
@@ -481,9 +446,8 @@ class InvalidQueryStatementException extends CloudTrailServiceException_1.CloudT
|
|
|
481
446
|
Object.setPrototypeOf(this, InvalidQueryStatementException.prototype);
|
|
482
447
|
this.Message = opts.Message;
|
|
483
448
|
}
|
|
484
|
-
}
|
|
485
|
-
exports.
|
|
486
|
-
class ServiceQuotaExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
449
|
+
};
|
|
450
|
+
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
487
451
|
name = "ServiceQuotaExceededException";
|
|
488
452
|
$fault = "client";
|
|
489
453
|
Message;
|
|
@@ -496,9 +460,8 @@ class ServiceQuotaExceededException extends CloudTrailServiceException_1.CloudTr
|
|
|
496
460
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
497
461
|
this.Message = opts.Message;
|
|
498
462
|
}
|
|
499
|
-
}
|
|
500
|
-
exports.
|
|
501
|
-
class CloudTrailAccessNotEnabledException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
463
|
+
};
|
|
464
|
+
exports.CloudTrailAccessNotEnabledException = class CloudTrailAccessNotEnabledException extends __BaseException {
|
|
502
465
|
name = "CloudTrailAccessNotEnabledException";
|
|
503
466
|
$fault = "client";
|
|
504
467
|
Message;
|
|
@@ -511,9 +474,8 @@ class CloudTrailAccessNotEnabledException extends CloudTrailServiceException_1.C
|
|
|
511
474
|
Object.setPrototypeOf(this, CloudTrailAccessNotEnabledException.prototype);
|
|
512
475
|
this.Message = opts.Message;
|
|
513
476
|
}
|
|
514
|
-
}
|
|
515
|
-
exports.
|
|
516
|
-
class EventDataStoreAlreadyExistsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
477
|
+
};
|
|
478
|
+
exports.EventDataStoreAlreadyExistsException = class EventDataStoreAlreadyExistsException extends __BaseException {
|
|
517
479
|
name = "EventDataStoreAlreadyExistsException";
|
|
518
480
|
$fault = "client";
|
|
519
481
|
Message;
|
|
@@ -526,9 +488,8 @@ class EventDataStoreAlreadyExistsException extends CloudTrailServiceException_1.
|
|
|
526
488
|
Object.setPrototypeOf(this, EventDataStoreAlreadyExistsException.prototype);
|
|
527
489
|
this.Message = opts.Message;
|
|
528
490
|
}
|
|
529
|
-
}
|
|
530
|
-
exports.
|
|
531
|
-
class EventDataStoreMaxLimitExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
491
|
+
};
|
|
492
|
+
exports.EventDataStoreMaxLimitExceededException = class EventDataStoreMaxLimitExceededException extends __BaseException {
|
|
532
493
|
name = "EventDataStoreMaxLimitExceededException";
|
|
533
494
|
$fault = "client";
|
|
534
495
|
Message;
|
|
@@ -541,9 +502,8 @@ class EventDataStoreMaxLimitExceededException extends CloudTrailServiceException
|
|
|
541
502
|
Object.setPrototypeOf(this, EventDataStoreMaxLimitExceededException.prototype);
|
|
542
503
|
this.Message = opts.Message;
|
|
543
504
|
}
|
|
544
|
-
}
|
|
545
|
-
exports.
|
|
546
|
-
class InsufficientDependencyServiceAccessPermissionException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
505
|
+
};
|
|
506
|
+
exports.InsufficientDependencyServiceAccessPermissionException = class InsufficientDependencyServiceAccessPermissionException extends __BaseException {
|
|
547
507
|
name = "InsufficientDependencyServiceAccessPermissionException";
|
|
548
508
|
$fault = "client";
|
|
549
509
|
Message;
|
|
@@ -556,9 +516,8 @@ class InsufficientDependencyServiceAccessPermissionException extends CloudTrailS
|
|
|
556
516
|
Object.setPrototypeOf(this, InsufficientDependencyServiceAccessPermissionException.prototype);
|
|
557
517
|
this.Message = opts.Message;
|
|
558
518
|
}
|
|
559
|
-
}
|
|
560
|
-
exports.
|
|
561
|
-
class InvalidEventSelectorsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
519
|
+
};
|
|
520
|
+
exports.InvalidEventSelectorsException = class InvalidEventSelectorsException extends __BaseException {
|
|
562
521
|
name = "InvalidEventSelectorsException";
|
|
563
522
|
$fault = "client";
|
|
564
523
|
Message;
|
|
@@ -571,9 +530,8 @@ class InvalidEventSelectorsException extends CloudTrailServiceException_1.CloudT
|
|
|
571
530
|
Object.setPrototypeOf(this, InvalidEventSelectorsException.prototype);
|
|
572
531
|
this.Message = opts.Message;
|
|
573
532
|
}
|
|
574
|
-
}
|
|
575
|
-
exports.
|
|
576
|
-
class InvalidKmsKeyIdException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
533
|
+
};
|
|
534
|
+
exports.InvalidKmsKeyIdException = class InvalidKmsKeyIdException extends __BaseException {
|
|
577
535
|
name = "InvalidKmsKeyIdException";
|
|
578
536
|
$fault = "client";
|
|
579
537
|
Message;
|
|
@@ -586,9 +544,8 @@ class InvalidKmsKeyIdException extends CloudTrailServiceException_1.CloudTrailSe
|
|
|
586
544
|
Object.setPrototypeOf(this, InvalidKmsKeyIdException.prototype);
|
|
587
545
|
this.Message = opts.Message;
|
|
588
546
|
}
|
|
589
|
-
}
|
|
590
|
-
exports.
|
|
591
|
-
class KmsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
547
|
+
};
|
|
548
|
+
exports.KmsException = class KmsException extends __BaseException {
|
|
592
549
|
name = "KmsException";
|
|
593
550
|
$fault = "client";
|
|
594
551
|
Message;
|
|
@@ -601,9 +558,8 @@ class KmsException extends CloudTrailServiceException_1.CloudTrailServiceExcepti
|
|
|
601
558
|
Object.setPrototypeOf(this, KmsException.prototype);
|
|
602
559
|
this.Message = opts.Message;
|
|
603
560
|
}
|
|
604
|
-
}
|
|
605
|
-
exports.
|
|
606
|
-
class KmsKeyNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
561
|
+
};
|
|
562
|
+
exports.KmsKeyNotFoundException = class KmsKeyNotFoundException extends __BaseException {
|
|
607
563
|
name = "KmsKeyNotFoundException";
|
|
608
564
|
$fault = "client";
|
|
609
565
|
Message;
|
|
@@ -616,9 +572,8 @@ class KmsKeyNotFoundException extends CloudTrailServiceException_1.CloudTrailSer
|
|
|
616
572
|
Object.setPrototypeOf(this, KmsKeyNotFoundException.prototype);
|
|
617
573
|
this.Message = opts.Message;
|
|
618
574
|
}
|
|
619
|
-
}
|
|
620
|
-
exports.
|
|
621
|
-
class OrganizationNotInAllFeaturesModeException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
575
|
+
};
|
|
576
|
+
exports.OrganizationNotInAllFeaturesModeException = class OrganizationNotInAllFeaturesModeException extends __BaseException {
|
|
622
577
|
name = "OrganizationNotInAllFeaturesModeException";
|
|
623
578
|
$fault = "client";
|
|
624
579
|
Message;
|
|
@@ -631,9 +586,8 @@ class OrganizationNotInAllFeaturesModeException extends CloudTrailServiceExcepti
|
|
|
631
586
|
Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
|
|
632
587
|
this.Message = opts.Message;
|
|
633
588
|
}
|
|
634
|
-
}
|
|
635
|
-
exports.
|
|
636
|
-
class OrganizationsNotInUseException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
589
|
+
};
|
|
590
|
+
exports.OrganizationsNotInUseException = class OrganizationsNotInUseException extends __BaseException {
|
|
637
591
|
name = "OrganizationsNotInUseException";
|
|
638
592
|
$fault = "client";
|
|
639
593
|
Message;
|
|
@@ -646,9 +600,8 @@ class OrganizationsNotInUseException extends CloudTrailServiceException_1.CloudT
|
|
|
646
600
|
Object.setPrototypeOf(this, OrganizationsNotInUseException.prototype);
|
|
647
601
|
this.Message = opts.Message;
|
|
648
602
|
}
|
|
649
|
-
}
|
|
650
|
-
exports.
|
|
651
|
-
class ThrottlingException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
603
|
+
};
|
|
604
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
652
605
|
name = "ThrottlingException";
|
|
653
606
|
$fault = "client";
|
|
654
607
|
Message;
|
|
@@ -661,9 +614,8 @@ class ThrottlingException extends CloudTrailServiceException_1.CloudTrailService
|
|
|
661
614
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
662
615
|
this.Message = opts.Message;
|
|
663
616
|
}
|
|
664
|
-
}
|
|
665
|
-
exports.
|
|
666
|
-
class CloudTrailInvalidClientTokenIdException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
617
|
+
};
|
|
618
|
+
exports.CloudTrailInvalidClientTokenIdException = class CloudTrailInvalidClientTokenIdException extends __BaseException {
|
|
667
619
|
name = "CloudTrailInvalidClientTokenIdException";
|
|
668
620
|
$fault = "client";
|
|
669
621
|
Message;
|
|
@@ -676,9 +628,8 @@ class CloudTrailInvalidClientTokenIdException extends CloudTrailServiceException
|
|
|
676
628
|
Object.setPrototypeOf(this, CloudTrailInvalidClientTokenIdException.prototype);
|
|
677
629
|
this.Message = opts.Message;
|
|
678
630
|
}
|
|
679
|
-
}
|
|
680
|
-
exports.
|
|
681
|
-
class CloudWatchLogsDeliveryUnavailableException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
631
|
+
};
|
|
632
|
+
exports.CloudWatchLogsDeliveryUnavailableException = class CloudWatchLogsDeliveryUnavailableException extends __BaseException {
|
|
682
633
|
name = "CloudWatchLogsDeliveryUnavailableException";
|
|
683
634
|
$fault = "client";
|
|
684
635
|
Message;
|
|
@@ -691,9 +642,8 @@ class CloudWatchLogsDeliveryUnavailableException extends CloudTrailServiceExcept
|
|
|
691
642
|
Object.setPrototypeOf(this, CloudWatchLogsDeliveryUnavailableException.prototype);
|
|
692
643
|
this.Message = opts.Message;
|
|
693
644
|
}
|
|
694
|
-
}
|
|
695
|
-
exports.
|
|
696
|
-
class InsufficientS3BucketPolicyException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
645
|
+
};
|
|
646
|
+
exports.InsufficientS3BucketPolicyException = class InsufficientS3BucketPolicyException extends __BaseException {
|
|
697
647
|
name = "InsufficientS3BucketPolicyException";
|
|
698
648
|
$fault = "client";
|
|
699
649
|
Message;
|
|
@@ -706,9 +656,8 @@ class InsufficientS3BucketPolicyException extends CloudTrailServiceException_1.C
|
|
|
706
656
|
Object.setPrototypeOf(this, InsufficientS3BucketPolicyException.prototype);
|
|
707
657
|
this.Message = opts.Message;
|
|
708
658
|
}
|
|
709
|
-
}
|
|
710
|
-
exports.
|
|
711
|
-
class InsufficientSnsTopicPolicyException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
659
|
+
};
|
|
660
|
+
exports.InsufficientSnsTopicPolicyException = class InsufficientSnsTopicPolicyException extends __BaseException {
|
|
712
661
|
name = "InsufficientSnsTopicPolicyException";
|
|
713
662
|
$fault = "client";
|
|
714
663
|
Message;
|
|
@@ -721,9 +670,8 @@ class InsufficientSnsTopicPolicyException extends CloudTrailServiceException_1.C
|
|
|
721
670
|
Object.setPrototypeOf(this, InsufficientSnsTopicPolicyException.prototype);
|
|
722
671
|
this.Message = opts.Message;
|
|
723
672
|
}
|
|
724
|
-
}
|
|
725
|
-
exports.
|
|
726
|
-
class InvalidCloudWatchLogsLogGroupArnException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
673
|
+
};
|
|
674
|
+
exports.InvalidCloudWatchLogsLogGroupArnException = class InvalidCloudWatchLogsLogGroupArnException extends __BaseException {
|
|
727
675
|
name = "InvalidCloudWatchLogsLogGroupArnException";
|
|
728
676
|
$fault = "client";
|
|
729
677
|
Message;
|
|
@@ -736,9 +684,8 @@ class InvalidCloudWatchLogsLogGroupArnException extends CloudTrailServiceExcepti
|
|
|
736
684
|
Object.setPrototypeOf(this, InvalidCloudWatchLogsLogGroupArnException.prototype);
|
|
737
685
|
this.Message = opts.Message;
|
|
738
686
|
}
|
|
739
|
-
}
|
|
740
|
-
exports.
|
|
741
|
-
class InvalidCloudWatchLogsRoleArnException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
687
|
+
};
|
|
688
|
+
exports.InvalidCloudWatchLogsRoleArnException = class InvalidCloudWatchLogsRoleArnException extends __BaseException {
|
|
742
689
|
name = "InvalidCloudWatchLogsRoleArnException";
|
|
743
690
|
$fault = "client";
|
|
744
691
|
Message;
|
|
@@ -751,9 +698,8 @@ class InvalidCloudWatchLogsRoleArnException extends CloudTrailServiceException_1
|
|
|
751
698
|
Object.setPrototypeOf(this, InvalidCloudWatchLogsRoleArnException.prototype);
|
|
752
699
|
this.Message = opts.Message;
|
|
753
700
|
}
|
|
754
|
-
}
|
|
755
|
-
exports.
|
|
756
|
-
class InvalidParameterCombinationException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
701
|
+
};
|
|
702
|
+
exports.InvalidParameterCombinationException = class InvalidParameterCombinationException extends __BaseException {
|
|
757
703
|
name = "InvalidParameterCombinationException";
|
|
758
704
|
$fault = "client";
|
|
759
705
|
Message;
|
|
@@ -766,9 +712,8 @@ class InvalidParameterCombinationException extends CloudTrailServiceException_1.
|
|
|
766
712
|
Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
|
|
767
713
|
this.Message = opts.Message;
|
|
768
714
|
}
|
|
769
|
-
}
|
|
770
|
-
exports.
|
|
771
|
-
class InvalidS3BucketNameException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
715
|
+
};
|
|
716
|
+
exports.InvalidS3BucketNameException = class InvalidS3BucketNameException extends __BaseException {
|
|
772
717
|
name = "InvalidS3BucketNameException";
|
|
773
718
|
$fault = "client";
|
|
774
719
|
Message;
|
|
@@ -781,9 +726,8 @@ class InvalidS3BucketNameException extends CloudTrailServiceException_1.CloudTra
|
|
|
781
726
|
Object.setPrototypeOf(this, InvalidS3BucketNameException.prototype);
|
|
782
727
|
this.Message = opts.Message;
|
|
783
728
|
}
|
|
784
|
-
}
|
|
785
|
-
exports.
|
|
786
|
-
class InvalidS3PrefixException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
729
|
+
};
|
|
730
|
+
exports.InvalidS3PrefixException = class InvalidS3PrefixException extends __BaseException {
|
|
787
731
|
name = "InvalidS3PrefixException";
|
|
788
732
|
$fault = "client";
|
|
789
733
|
Message;
|
|
@@ -796,9 +740,8 @@ class InvalidS3PrefixException extends CloudTrailServiceException_1.CloudTrailSe
|
|
|
796
740
|
Object.setPrototypeOf(this, InvalidS3PrefixException.prototype);
|
|
797
741
|
this.Message = opts.Message;
|
|
798
742
|
}
|
|
799
|
-
}
|
|
800
|
-
exports.
|
|
801
|
-
class InvalidSnsTopicNameException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
743
|
+
};
|
|
744
|
+
exports.InvalidSnsTopicNameException = class InvalidSnsTopicNameException extends __BaseException {
|
|
802
745
|
name = "InvalidSnsTopicNameException";
|
|
803
746
|
$fault = "client";
|
|
804
747
|
Message;
|
|
@@ -811,9 +754,8 @@ class InvalidSnsTopicNameException extends CloudTrailServiceException_1.CloudTra
|
|
|
811
754
|
Object.setPrototypeOf(this, InvalidSnsTopicNameException.prototype);
|
|
812
755
|
this.Message = opts.Message;
|
|
813
756
|
}
|
|
814
|
-
}
|
|
815
|
-
exports.
|
|
816
|
-
class KmsKeyDisabledException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
757
|
+
};
|
|
758
|
+
exports.KmsKeyDisabledException = class KmsKeyDisabledException extends __BaseException {
|
|
817
759
|
name = "KmsKeyDisabledException";
|
|
818
760
|
$fault = "client";
|
|
819
761
|
Message;
|
|
@@ -826,9 +768,8 @@ class KmsKeyDisabledException extends CloudTrailServiceException_1.CloudTrailSer
|
|
|
826
768
|
Object.setPrototypeOf(this, KmsKeyDisabledException.prototype);
|
|
827
769
|
this.Message = opts.Message;
|
|
828
770
|
}
|
|
829
|
-
}
|
|
830
|
-
exports.
|
|
831
|
-
class MaximumNumberOfTrailsExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
771
|
+
};
|
|
772
|
+
exports.MaximumNumberOfTrailsExceededException = class MaximumNumberOfTrailsExceededException extends __BaseException {
|
|
832
773
|
name = "MaximumNumberOfTrailsExceededException";
|
|
833
774
|
$fault = "client";
|
|
834
775
|
Message;
|
|
@@ -841,9 +782,8 @@ class MaximumNumberOfTrailsExceededException extends CloudTrailServiceException_
|
|
|
841
782
|
Object.setPrototypeOf(this, MaximumNumberOfTrailsExceededException.prototype);
|
|
842
783
|
this.Message = opts.Message;
|
|
843
784
|
}
|
|
844
|
-
}
|
|
845
|
-
exports.
|
|
846
|
-
class S3BucketDoesNotExistException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
785
|
+
};
|
|
786
|
+
exports.S3BucketDoesNotExistException = class S3BucketDoesNotExistException extends __BaseException {
|
|
847
787
|
name = "S3BucketDoesNotExistException";
|
|
848
788
|
$fault = "client";
|
|
849
789
|
Message;
|
|
@@ -856,9 +796,8 @@ class S3BucketDoesNotExistException extends CloudTrailServiceException_1.CloudTr
|
|
|
856
796
|
Object.setPrototypeOf(this, S3BucketDoesNotExistException.prototype);
|
|
857
797
|
this.Message = opts.Message;
|
|
858
798
|
}
|
|
859
|
-
}
|
|
860
|
-
exports.
|
|
861
|
-
class TrailAlreadyExistsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
799
|
+
};
|
|
800
|
+
exports.TrailAlreadyExistsException = class TrailAlreadyExistsException extends __BaseException {
|
|
862
801
|
name = "TrailAlreadyExistsException";
|
|
863
802
|
$fault = "client";
|
|
864
803
|
Message;
|
|
@@ -871,9 +810,8 @@ class TrailAlreadyExistsException extends CloudTrailServiceException_1.CloudTrai
|
|
|
871
810
|
Object.setPrototypeOf(this, TrailAlreadyExistsException.prototype);
|
|
872
811
|
this.Message = opts.Message;
|
|
873
812
|
}
|
|
874
|
-
}
|
|
875
|
-
exports.
|
|
876
|
-
class TrailNotProvidedException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
813
|
+
};
|
|
814
|
+
exports.TrailNotProvidedException = class TrailNotProvidedException extends __BaseException {
|
|
877
815
|
name = "TrailNotProvidedException";
|
|
878
816
|
$fault = "client";
|
|
879
817
|
Message;
|
|
@@ -886,9 +824,8 @@ class TrailNotProvidedException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
886
824
|
Object.setPrototypeOf(this, TrailNotProvidedException.prototype);
|
|
887
825
|
this.Message = opts.Message;
|
|
888
826
|
}
|
|
889
|
-
}
|
|
890
|
-
exports.
|
|
891
|
-
class EventDataStoreFederationEnabledException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
827
|
+
};
|
|
828
|
+
exports.EventDataStoreFederationEnabledException = class EventDataStoreFederationEnabledException extends __BaseException {
|
|
892
829
|
name = "EventDataStoreFederationEnabledException";
|
|
893
830
|
$fault = "client";
|
|
894
831
|
Message;
|
|
@@ -901,9 +838,8 @@ class EventDataStoreFederationEnabledException extends CloudTrailServiceExceptio
|
|
|
901
838
|
Object.setPrototypeOf(this, EventDataStoreFederationEnabledException.prototype);
|
|
902
839
|
this.Message = opts.Message;
|
|
903
840
|
}
|
|
904
|
-
}
|
|
905
|
-
exports.
|
|
906
|
-
class EventDataStoreHasOngoingImportException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
841
|
+
};
|
|
842
|
+
exports.EventDataStoreHasOngoingImportException = class EventDataStoreHasOngoingImportException extends __BaseException {
|
|
907
843
|
name = "EventDataStoreHasOngoingImportException";
|
|
908
844
|
$fault = "client";
|
|
909
845
|
Message;
|
|
@@ -916,9 +852,8 @@ class EventDataStoreHasOngoingImportException extends CloudTrailServiceException
|
|
|
916
852
|
Object.setPrototypeOf(this, EventDataStoreHasOngoingImportException.prototype);
|
|
917
853
|
this.Message = opts.Message;
|
|
918
854
|
}
|
|
919
|
-
}
|
|
920
|
-
exports.
|
|
921
|
-
class EventDataStoreTerminationProtectedException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
855
|
+
};
|
|
856
|
+
exports.EventDataStoreTerminationProtectedException = class EventDataStoreTerminationProtectedException extends __BaseException {
|
|
922
857
|
name = "EventDataStoreTerminationProtectedException";
|
|
923
858
|
$fault = "client";
|
|
924
859
|
Message;
|
|
@@ -931,9 +866,8 @@ class EventDataStoreTerminationProtectedException extends CloudTrailServiceExcep
|
|
|
931
866
|
Object.setPrototypeOf(this, EventDataStoreTerminationProtectedException.prototype);
|
|
932
867
|
this.Message = opts.Message;
|
|
933
868
|
}
|
|
934
|
-
}
|
|
935
|
-
exports.
|
|
936
|
-
class ResourceARNNotValidException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
869
|
+
};
|
|
870
|
+
exports.ResourceARNNotValidException = class ResourceARNNotValidException extends __BaseException {
|
|
937
871
|
name = "ResourceARNNotValidException";
|
|
938
872
|
$fault = "client";
|
|
939
873
|
Message;
|
|
@@ -946,9 +880,8 @@ class ResourceARNNotValidException extends CloudTrailServiceException_1.CloudTra
|
|
|
946
880
|
Object.setPrototypeOf(this, ResourceARNNotValidException.prototype);
|
|
947
881
|
this.Message = opts.Message;
|
|
948
882
|
}
|
|
949
|
-
}
|
|
950
|
-
exports.
|
|
951
|
-
class ResourcePolicyNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
883
|
+
};
|
|
884
|
+
exports.ResourcePolicyNotFoundException = class ResourcePolicyNotFoundException extends __BaseException {
|
|
952
885
|
name = "ResourcePolicyNotFoundException";
|
|
953
886
|
$fault = "client";
|
|
954
887
|
Message;
|
|
@@ -961,9 +894,8 @@ class ResourcePolicyNotFoundException extends CloudTrailServiceException_1.Cloud
|
|
|
961
894
|
Object.setPrototypeOf(this, ResourcePolicyNotFoundException.prototype);
|
|
962
895
|
this.Message = opts.Message;
|
|
963
896
|
}
|
|
964
|
-
}
|
|
965
|
-
exports.
|
|
966
|
-
class InvalidHomeRegionException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
897
|
+
};
|
|
898
|
+
exports.InvalidHomeRegionException = class InvalidHomeRegionException extends __BaseException {
|
|
967
899
|
name = "InvalidHomeRegionException";
|
|
968
900
|
$fault = "client";
|
|
969
901
|
Message;
|
|
@@ -976,9 +908,8 @@ class InvalidHomeRegionException extends CloudTrailServiceException_1.CloudTrail
|
|
|
976
908
|
Object.setPrototypeOf(this, InvalidHomeRegionException.prototype);
|
|
977
909
|
this.Message = opts.Message;
|
|
978
910
|
}
|
|
979
|
-
}
|
|
980
|
-
exports.
|
|
981
|
-
class TrailNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
911
|
+
};
|
|
912
|
+
exports.TrailNotFoundException = class TrailNotFoundException extends __BaseException {
|
|
982
913
|
name = "TrailNotFoundException";
|
|
983
914
|
$fault = "client";
|
|
984
915
|
Message;
|
|
@@ -991,9 +922,8 @@ class TrailNotFoundException extends CloudTrailServiceException_1.CloudTrailServ
|
|
|
991
922
|
Object.setPrototypeOf(this, TrailNotFoundException.prototype);
|
|
992
923
|
this.Message = opts.Message;
|
|
993
924
|
}
|
|
994
|
-
}
|
|
995
|
-
exports.
|
|
996
|
-
class NotOrganizationManagementAccountException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
925
|
+
};
|
|
926
|
+
exports.NotOrganizationManagementAccountException = class NotOrganizationManagementAccountException extends __BaseException {
|
|
997
927
|
name = "NotOrganizationManagementAccountException";
|
|
998
928
|
$fault = "client";
|
|
999
929
|
Message;
|
|
@@ -1006,9 +936,8 @@ class NotOrganizationManagementAccountException extends CloudTrailServiceExcepti
|
|
|
1006
936
|
Object.setPrototypeOf(this, NotOrganizationManagementAccountException.prototype);
|
|
1007
937
|
this.Message = opts.Message;
|
|
1008
938
|
}
|
|
1009
|
-
}
|
|
1010
|
-
exports.
|
|
1011
|
-
class ConcurrentModificationException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
939
|
+
};
|
|
940
|
+
exports.ConcurrentModificationException = class ConcurrentModificationException extends __BaseException {
|
|
1012
941
|
name = "ConcurrentModificationException";
|
|
1013
942
|
$fault = "client";
|
|
1014
943
|
Message;
|
|
@@ -1021,9 +950,8 @@ class ConcurrentModificationException extends CloudTrailServiceException_1.Cloud
|
|
|
1021
950
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
1022
951
|
this.Message = opts.Message;
|
|
1023
952
|
}
|
|
1024
|
-
}
|
|
1025
|
-
exports.
|
|
1026
|
-
class GenerateResponseException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
953
|
+
};
|
|
954
|
+
exports.GenerateResponseException = class GenerateResponseException extends __BaseException {
|
|
1027
955
|
name = "GenerateResponseException";
|
|
1028
956
|
$fault = "client";
|
|
1029
957
|
Message;
|
|
@@ -1036,9 +964,8 @@ class GenerateResponseException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
1036
964
|
Object.setPrototypeOf(this, GenerateResponseException.prototype);
|
|
1037
965
|
this.Message = opts.Message;
|
|
1038
966
|
}
|
|
1039
|
-
}
|
|
1040
|
-
exports.
|
|
1041
|
-
class InvalidEventDataStoreStatusException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
967
|
+
};
|
|
968
|
+
exports.InvalidEventDataStoreStatusException = class InvalidEventDataStoreStatusException extends __BaseException {
|
|
1042
969
|
name = "InvalidEventDataStoreStatusException";
|
|
1043
970
|
$fault = "client";
|
|
1044
971
|
Message;
|
|
@@ -1051,9 +978,8 @@ class InvalidEventDataStoreStatusException extends CloudTrailServiceException_1.
|
|
|
1051
978
|
Object.setPrototypeOf(this, InvalidEventDataStoreStatusException.prototype);
|
|
1052
979
|
this.Message = opts.Message;
|
|
1053
980
|
}
|
|
1054
|
-
}
|
|
1055
|
-
exports.
|
|
1056
|
-
class ImportNotFoundException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
981
|
+
};
|
|
982
|
+
exports.ImportNotFoundException = class ImportNotFoundException extends __BaseException {
|
|
1057
983
|
name = "ImportNotFoundException";
|
|
1058
984
|
$fault = "client";
|
|
1059
985
|
Message;
|
|
@@ -1066,9 +992,8 @@ class ImportNotFoundException extends CloudTrailServiceException_1.CloudTrailSer
|
|
|
1066
992
|
Object.setPrototypeOf(this, ImportNotFoundException.prototype);
|
|
1067
993
|
this.Message = opts.Message;
|
|
1068
994
|
}
|
|
1069
|
-
}
|
|
1070
|
-
exports.
|
|
1071
|
-
class InsightNotEnabledException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
995
|
+
};
|
|
996
|
+
exports.InsightNotEnabledException = class InsightNotEnabledException extends __BaseException {
|
|
1072
997
|
name = "InsightNotEnabledException";
|
|
1073
998
|
$fault = "client";
|
|
1074
999
|
Message;
|
|
@@ -1081,9 +1006,8 @@ class InsightNotEnabledException extends CloudTrailServiceException_1.CloudTrail
|
|
|
1081
1006
|
Object.setPrototypeOf(this, InsightNotEnabledException.prototype);
|
|
1082
1007
|
this.Message = opts.Message;
|
|
1083
1008
|
}
|
|
1084
|
-
}
|
|
1085
|
-
exports.
|
|
1086
|
-
class InvalidMaxResultsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1009
|
+
};
|
|
1010
|
+
exports.InvalidMaxResultsException = class InvalidMaxResultsException extends __BaseException {
|
|
1087
1011
|
name = "InvalidMaxResultsException";
|
|
1088
1012
|
$fault = "client";
|
|
1089
1013
|
Message;
|
|
@@ -1096,9 +1020,8 @@ class InvalidMaxResultsException extends CloudTrailServiceException_1.CloudTrail
|
|
|
1096
1020
|
Object.setPrototypeOf(this, InvalidMaxResultsException.prototype);
|
|
1097
1021
|
this.Message = opts.Message;
|
|
1098
1022
|
}
|
|
1099
|
-
}
|
|
1100
|
-
exports.
|
|
1101
|
-
class InvalidNextTokenException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1023
|
+
};
|
|
1024
|
+
exports.InvalidNextTokenException = class InvalidNextTokenException extends __BaseException {
|
|
1102
1025
|
name = "InvalidNextTokenException";
|
|
1103
1026
|
$fault = "client";
|
|
1104
1027
|
Message;
|
|
@@ -1111,9 +1034,8 @@ class InvalidNextTokenException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
1111
1034
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
1112
1035
|
this.Message = opts.Message;
|
|
1113
1036
|
}
|
|
1114
|
-
}
|
|
1115
|
-
exports.
|
|
1116
|
-
class InvalidTimeRangeException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1037
|
+
};
|
|
1038
|
+
exports.InvalidTimeRangeException = class InvalidTimeRangeException extends __BaseException {
|
|
1117
1039
|
name = "InvalidTimeRangeException";
|
|
1118
1040
|
$fault = "client";
|
|
1119
1041
|
Message;
|
|
@@ -1126,9 +1048,8 @@ class InvalidTimeRangeException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
1126
1048
|
Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
|
|
1127
1049
|
this.Message = opts.Message;
|
|
1128
1050
|
}
|
|
1129
|
-
}
|
|
1130
|
-
exports.
|
|
1131
|
-
class InvalidTokenException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1051
|
+
};
|
|
1052
|
+
exports.InvalidTokenException = class InvalidTokenException extends __BaseException {
|
|
1132
1053
|
name = "InvalidTokenException";
|
|
1133
1054
|
$fault = "client";
|
|
1134
1055
|
Message;
|
|
@@ -1141,9 +1062,8 @@ class InvalidTokenException extends CloudTrailServiceException_1.CloudTrailServi
|
|
|
1141
1062
|
Object.setPrototypeOf(this, InvalidTokenException.prototype);
|
|
1142
1063
|
this.Message = opts.Message;
|
|
1143
1064
|
}
|
|
1144
|
-
}
|
|
1145
|
-
exports.
|
|
1146
|
-
class InvalidDateRangeException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1065
|
+
};
|
|
1066
|
+
exports.InvalidDateRangeException = class InvalidDateRangeException extends __BaseException {
|
|
1147
1067
|
name = "InvalidDateRangeException";
|
|
1148
1068
|
$fault = "client";
|
|
1149
1069
|
Message;
|
|
@@ -1156,9 +1076,8 @@ class InvalidDateRangeException extends CloudTrailServiceException_1.CloudTrailS
|
|
|
1156
1076
|
Object.setPrototypeOf(this, InvalidDateRangeException.prototype);
|
|
1157
1077
|
this.Message = opts.Message;
|
|
1158
1078
|
}
|
|
1159
|
-
}
|
|
1160
|
-
exports.
|
|
1161
|
-
class InvalidQueryStatusException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1079
|
+
};
|
|
1080
|
+
exports.InvalidQueryStatusException = class InvalidQueryStatusException extends __BaseException {
|
|
1162
1081
|
name = "InvalidQueryStatusException";
|
|
1163
1082
|
$fault = "client";
|
|
1164
1083
|
Message;
|
|
@@ -1171,9 +1090,8 @@ class InvalidQueryStatusException extends CloudTrailServiceException_1.CloudTrai
|
|
|
1171
1090
|
Object.setPrototypeOf(this, InvalidQueryStatusException.prototype);
|
|
1172
1091
|
this.Message = opts.Message;
|
|
1173
1092
|
}
|
|
1174
|
-
}
|
|
1175
|
-
exports.
|
|
1176
|
-
class InvalidEventCategoryException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1093
|
+
};
|
|
1094
|
+
exports.InvalidEventCategoryException = class InvalidEventCategoryException extends __BaseException {
|
|
1177
1095
|
name = "InvalidEventCategoryException";
|
|
1178
1096
|
$fault = "client";
|
|
1179
1097
|
Message;
|
|
@@ -1186,9 +1104,8 @@ class InvalidEventCategoryException extends CloudTrailServiceException_1.CloudTr
|
|
|
1186
1104
|
Object.setPrototypeOf(this, InvalidEventCategoryException.prototype);
|
|
1187
1105
|
this.Message = opts.Message;
|
|
1188
1106
|
}
|
|
1189
|
-
}
|
|
1190
|
-
exports.
|
|
1191
|
-
class InvalidLookupAttributesException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1107
|
+
};
|
|
1108
|
+
exports.InvalidLookupAttributesException = class InvalidLookupAttributesException extends __BaseException {
|
|
1192
1109
|
name = "InvalidLookupAttributesException";
|
|
1193
1110
|
$fault = "client";
|
|
1194
1111
|
Message;
|
|
@@ -1201,9 +1118,8 @@ class InvalidLookupAttributesException extends CloudTrailServiceException_1.Clou
|
|
|
1201
1118
|
Object.setPrototypeOf(this, InvalidLookupAttributesException.prototype);
|
|
1202
1119
|
this.Message = opts.Message;
|
|
1203
1120
|
}
|
|
1204
|
-
}
|
|
1205
|
-
exports.
|
|
1206
|
-
class InsufficientIAMAccessPermissionException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1121
|
+
};
|
|
1122
|
+
exports.InsufficientIAMAccessPermissionException = class InsufficientIAMAccessPermissionException extends __BaseException {
|
|
1207
1123
|
name = "InsufficientIAMAccessPermissionException";
|
|
1208
1124
|
$fault = "client";
|
|
1209
1125
|
Message;
|
|
@@ -1216,9 +1132,8 @@ class InsufficientIAMAccessPermissionException extends CloudTrailServiceExceptio
|
|
|
1216
1132
|
Object.setPrototypeOf(this, InsufficientIAMAccessPermissionException.prototype);
|
|
1217
1133
|
this.Message = opts.Message;
|
|
1218
1134
|
}
|
|
1219
|
-
}
|
|
1220
|
-
exports.
|
|
1221
|
-
class InvalidInsightSelectorsException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1135
|
+
};
|
|
1136
|
+
exports.InvalidInsightSelectorsException = class InvalidInsightSelectorsException extends __BaseException {
|
|
1222
1137
|
name = "InvalidInsightSelectorsException";
|
|
1223
1138
|
$fault = "client";
|
|
1224
1139
|
Message;
|
|
@@ -1231,9 +1146,8 @@ class InvalidInsightSelectorsException extends CloudTrailServiceException_1.Clou
|
|
|
1231
1146
|
Object.setPrototypeOf(this, InvalidInsightSelectorsException.prototype);
|
|
1232
1147
|
this.Message = opts.Message;
|
|
1233
1148
|
}
|
|
1234
|
-
}
|
|
1235
|
-
exports.
|
|
1236
|
-
class ResourcePolicyNotValidException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1149
|
+
};
|
|
1150
|
+
exports.ResourcePolicyNotValidException = class ResourcePolicyNotValidException extends __BaseException {
|
|
1237
1151
|
name = "ResourcePolicyNotValidException";
|
|
1238
1152
|
$fault = "client";
|
|
1239
1153
|
Message;
|
|
@@ -1246,9 +1160,8 @@ class ResourcePolicyNotValidException extends CloudTrailServiceException_1.Cloud
|
|
|
1246
1160
|
Object.setPrototypeOf(this, ResourcePolicyNotValidException.prototype);
|
|
1247
1161
|
this.Message = opts.Message;
|
|
1248
1162
|
}
|
|
1249
|
-
}
|
|
1250
|
-
exports.
|
|
1251
|
-
class DelegatedAdminAccountLimitExceededException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1163
|
+
};
|
|
1164
|
+
exports.DelegatedAdminAccountLimitExceededException = class DelegatedAdminAccountLimitExceededException extends __BaseException {
|
|
1252
1165
|
name = "DelegatedAdminAccountLimitExceededException";
|
|
1253
1166
|
$fault = "client";
|
|
1254
1167
|
Message;
|
|
@@ -1261,9 +1174,8 @@ class DelegatedAdminAccountLimitExceededException extends CloudTrailServiceExcep
|
|
|
1261
1174
|
Object.setPrototypeOf(this, DelegatedAdminAccountLimitExceededException.prototype);
|
|
1262
1175
|
this.Message = opts.Message;
|
|
1263
1176
|
}
|
|
1264
|
-
}
|
|
1265
|
-
exports.
|
|
1266
|
-
class InvalidImportSourceException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1177
|
+
};
|
|
1178
|
+
exports.InvalidImportSourceException = class InvalidImportSourceException extends __BaseException {
|
|
1267
1179
|
name = "InvalidImportSourceException";
|
|
1268
1180
|
$fault = "client";
|
|
1269
1181
|
Message;
|
|
@@ -1276,9 +1188,8 @@ class InvalidImportSourceException extends CloudTrailServiceException_1.CloudTra
|
|
|
1276
1188
|
Object.setPrototypeOf(this, InvalidImportSourceException.prototype);
|
|
1277
1189
|
this.Message = opts.Message;
|
|
1278
1190
|
}
|
|
1279
|
-
}
|
|
1280
|
-
exports.
|
|
1281
|
-
class MaxConcurrentQueriesException extends CloudTrailServiceException_1.CloudTrailServiceException {
|
|
1191
|
+
};
|
|
1192
|
+
exports.MaxConcurrentQueriesException = class MaxConcurrentQueriesException extends __BaseException {
|
|
1282
1193
|
name = "MaxConcurrentQueriesException";
|
|
1283
1194
|
$fault = "client";
|
|
1284
1195
|
Message;
|
|
@@ -1291,5 +1202,4 @@ class MaxConcurrentQueriesException extends CloudTrailServiceException_1.CloudTr
|
|
|
1291
1202
|
Object.setPrototypeOf(this, MaxConcurrentQueriesException.prototype);
|
|
1292
1203
|
this.Message = opts.Message;
|
|
1293
1204
|
}
|
|
1294
|
-
}
|
|
1295
|
-
exports.MaxConcurrentQueriesException = MaxConcurrentQueriesException;
|
|
1205
|
+
};
|