@aws-sdk/client-cloudtrail 3.183.0 → 3.185.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.
Files changed (59) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +2 -2
  3. package/dist-es/CloudTrail.js +153 -146
  4. package/dist-es/CloudTrailClient.js +28 -22
  5. package/dist-es/commands/AddTagsCommand.js +28 -21
  6. package/dist-es/commands/CancelQueryCommand.js +28 -21
  7. package/dist-es/commands/CreateEventDataStoreCommand.js +28 -21
  8. package/dist-es/commands/CreateTrailCommand.js +28 -21
  9. package/dist-es/commands/DeleteEventDataStoreCommand.js +28 -21
  10. package/dist-es/commands/DeleteTrailCommand.js +28 -21
  11. package/dist-es/commands/DescribeQueryCommand.js +28 -21
  12. package/dist-es/commands/DescribeTrailsCommand.js +28 -21
  13. package/dist-es/commands/GetChannelCommand.js +28 -21
  14. package/dist-es/commands/GetEventDataStoreCommand.js +28 -21
  15. package/dist-es/commands/GetEventSelectorsCommand.js +28 -21
  16. package/dist-es/commands/GetImportCommand.js +28 -21
  17. package/dist-es/commands/GetInsightSelectorsCommand.js +28 -21
  18. package/dist-es/commands/GetQueryResultsCommand.js +28 -21
  19. package/dist-es/commands/GetTrailCommand.js +28 -21
  20. package/dist-es/commands/GetTrailStatusCommand.js +28 -21
  21. package/dist-es/commands/ListChannelsCommand.js +28 -21
  22. package/dist-es/commands/ListEventDataStoresCommand.js +28 -21
  23. package/dist-es/commands/ListImportFailuresCommand.js +28 -21
  24. package/dist-es/commands/ListImportsCommand.js +28 -21
  25. package/dist-es/commands/ListPublicKeysCommand.js +28 -21
  26. package/dist-es/commands/ListQueriesCommand.js +28 -21
  27. package/dist-es/commands/ListTagsCommand.js +28 -21
  28. package/dist-es/commands/ListTrailsCommand.js +28 -21
  29. package/dist-es/commands/LookupEventsCommand.js +28 -21
  30. package/dist-es/commands/PutEventSelectorsCommand.js +28 -21
  31. package/dist-es/commands/PutInsightSelectorsCommand.js +28 -21
  32. package/dist-es/commands/RemoveTagsCommand.js +28 -21
  33. package/dist-es/commands/RestoreEventDataStoreCommand.js +28 -21
  34. package/dist-es/commands/StartImportCommand.js +28 -21
  35. package/dist-es/commands/StartLoggingCommand.js +28 -21
  36. package/dist-es/commands/StartQueryCommand.js +28 -21
  37. package/dist-es/commands/StopImportCommand.js +28 -21
  38. package/dist-es/commands/StopLoggingCommand.js +28 -21
  39. package/dist-es/commands/UpdateEventDataStoreCommand.js +28 -21
  40. package/dist-es/commands/UpdateTrailCommand.js +28 -21
  41. package/dist-es/endpoints.js +8 -8
  42. package/dist-es/models/CloudTrailServiceException.js +10 -5
  43. package/dist-es/models/models_0.js +943 -1136
  44. package/dist-es/pagination/GetQueryResultsPaginator.js +67 -24
  45. package/dist-es/pagination/ListChannelsPaginator.js +68 -25
  46. package/dist-es/pagination/ListEventDataStoresPaginator.js +68 -25
  47. package/dist-es/pagination/ListImportFailuresPaginator.js +68 -25
  48. package/dist-es/pagination/ListImportsPaginator.js +68 -25
  49. package/dist-es/pagination/ListPublicKeysPaginator.js +67 -24
  50. package/dist-es/pagination/ListQueriesPaginator.js +68 -25
  51. package/dist-es/pagination/ListTagsPaginator.js +67 -24
  52. package/dist-es/pagination/ListTrailsPaginator.js +67 -24
  53. package/dist-es/pagination/LookupEventsPaginator.js +68 -25
  54. package/dist-es/protocols/Aws_json1_1.js +4293 -3466
  55. package/dist-es/runtimeConfig.browser.js +12 -26
  56. package/dist-es/runtimeConfig.js +12 -30
  57. package/dist-es/runtimeConfig.native.js +5 -8
  58. package/dist-es/runtimeConfig.shared.js +11 -8
  59. package/package.json +5 -5
@@ -1,173 +1,174 @@
1
+ import { __assign, __extends } from "tslib";
1
2
  import { CloudTrailServiceException as __BaseException } from "./CloudTrailServiceException";
2
- export class AccountHasOngoingImportException extends __BaseException {
3
- constructor(opts) {
4
- super({
5
- name: "AccountHasOngoingImportException",
6
- $fault: "client",
7
- ...opts,
8
- });
9
- this.name = "AccountHasOngoingImportException";
10
- this.$fault = "client";
11
- Object.setPrototypeOf(this, AccountHasOngoingImportException.prototype);
12
- this.Message = opts.Message;
13
- }
14
- }
15
- export class CloudTrailARNInvalidException extends __BaseException {
16
- constructor(opts) {
17
- super({
18
- name: "CloudTrailARNInvalidException",
19
- $fault: "client",
20
- ...opts,
21
- });
22
- this.name = "CloudTrailARNInvalidException";
23
- this.$fault = "client";
24
- Object.setPrototypeOf(this, CloudTrailARNInvalidException.prototype);
25
- this.Message = opts.Message;
26
- }
27
- }
28
- export class ConflictException extends __BaseException {
29
- constructor(opts) {
30
- super({
31
- name: "ConflictException",
32
- $fault: "client",
33
- ...opts,
34
- });
35
- this.name = "ConflictException";
36
- this.$fault = "client";
37
- Object.setPrototypeOf(this, ConflictException.prototype);
38
- this.Message = opts.Message;
39
- }
40
- }
41
- export class EventDataStoreNotFoundException extends __BaseException {
42
- constructor(opts) {
43
- super({
44
- name: "EventDataStoreNotFoundException",
45
- $fault: "client",
46
- ...opts,
47
- });
48
- this.name = "EventDataStoreNotFoundException";
49
- this.$fault = "client";
50
- Object.setPrototypeOf(this, EventDataStoreNotFoundException.prototype);
51
- this.Message = opts.Message;
52
- }
53
- }
54
- export class InactiveEventDataStoreException extends __BaseException {
55
- constructor(opts) {
56
- super({
57
- name: "InactiveEventDataStoreException",
58
- $fault: "client",
59
- ...opts,
60
- });
61
- this.name = "InactiveEventDataStoreException";
62
- this.$fault = "client";
63
- Object.setPrototypeOf(this, InactiveEventDataStoreException.prototype);
64
- this.Message = opts.Message;
65
- }
66
- }
67
- export class InvalidTagParameterException extends __BaseException {
68
- constructor(opts) {
69
- super({
70
- name: "InvalidTagParameterException",
71
- $fault: "client",
72
- ...opts,
73
- });
74
- this.name = "InvalidTagParameterException";
75
- this.$fault = "client";
76
- Object.setPrototypeOf(this, InvalidTagParameterException.prototype);
77
- this.Message = opts.Message;
78
- }
79
- }
80
- export class InvalidTrailNameException extends __BaseException {
81
- constructor(opts) {
82
- super({
83
- name: "InvalidTrailNameException",
84
- $fault: "client",
85
- ...opts,
86
- });
87
- this.name = "InvalidTrailNameException";
88
- this.$fault = "client";
89
- Object.setPrototypeOf(this, InvalidTrailNameException.prototype);
90
- this.Message = opts.Message;
91
- }
92
- }
93
- export class NotOrganizationMasterAccountException extends __BaseException {
94
- constructor(opts) {
95
- super({
96
- name: "NotOrganizationMasterAccountException",
97
- $fault: "client",
98
- ...opts,
99
- });
100
- this.name = "NotOrganizationMasterAccountException";
101
- this.$fault = "client";
102
- Object.setPrototypeOf(this, NotOrganizationMasterAccountException.prototype);
103
- this.Message = opts.Message;
104
- }
105
- }
106
- export class OperationNotPermittedException extends __BaseException {
107
- constructor(opts) {
108
- super({
109
- name: "OperationNotPermittedException",
110
- $fault: "client",
111
- ...opts,
112
- });
113
- this.name = "OperationNotPermittedException";
114
- this.$fault = "client";
115
- Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
116
- this.Message = opts.Message;
117
- }
118
- }
119
- export class ResourceNotFoundException extends __BaseException {
120
- constructor(opts) {
121
- super({
122
- name: "ResourceNotFoundException",
123
- $fault: "client",
124
- ...opts,
125
- });
126
- this.name = "ResourceNotFoundException";
127
- this.$fault = "client";
128
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
129
- this.Message = opts.Message;
130
- }
131
- }
132
- export class ResourceTypeNotSupportedException extends __BaseException {
133
- constructor(opts) {
134
- super({
135
- name: "ResourceTypeNotSupportedException",
136
- $fault: "client",
137
- ...opts,
138
- });
139
- this.name = "ResourceTypeNotSupportedException";
140
- this.$fault = "client";
141
- Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
142
- this.Message = opts.Message;
143
- }
144
- }
145
- export class TagsLimitExceededException extends __BaseException {
146
- constructor(opts) {
147
- super({
148
- name: "TagsLimitExceededException",
149
- $fault: "client",
150
- ...opts,
151
- });
152
- this.name = "TagsLimitExceededException";
153
- this.$fault = "client";
154
- Object.setPrototypeOf(this, TagsLimitExceededException.prototype);
155
- this.Message = opts.Message;
156
- }
157
- }
158
- export class UnsupportedOperationException extends __BaseException {
159
- constructor(opts) {
160
- super({
161
- name: "UnsupportedOperationException",
162
- $fault: "client",
163
- ...opts,
164
- });
165
- this.name = "UnsupportedOperationException";
166
- this.$fault = "client";
167
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
168
- this.Message = opts.Message;
169
- }
170
- }
3
+ var AccountHasOngoingImportException = (function (_super) {
4
+ __extends(AccountHasOngoingImportException, _super);
5
+ function AccountHasOngoingImportException(opts) {
6
+ var _this = _super.call(this, __assign({ name: "AccountHasOngoingImportException", $fault: "client" }, opts)) || this;
7
+ _this.name = "AccountHasOngoingImportException";
8
+ _this.$fault = "client";
9
+ Object.setPrototypeOf(_this, AccountHasOngoingImportException.prototype);
10
+ _this.Message = opts.Message;
11
+ return _this;
12
+ }
13
+ return AccountHasOngoingImportException;
14
+ }(__BaseException));
15
+ export { AccountHasOngoingImportException };
16
+ var CloudTrailARNInvalidException = (function (_super) {
17
+ __extends(CloudTrailARNInvalidException, _super);
18
+ function CloudTrailARNInvalidException(opts) {
19
+ var _this = _super.call(this, __assign({ name: "CloudTrailARNInvalidException", $fault: "client" }, opts)) || this;
20
+ _this.name = "CloudTrailARNInvalidException";
21
+ _this.$fault = "client";
22
+ Object.setPrototypeOf(_this, CloudTrailARNInvalidException.prototype);
23
+ _this.Message = opts.Message;
24
+ return _this;
25
+ }
26
+ return CloudTrailARNInvalidException;
27
+ }(__BaseException));
28
+ export { CloudTrailARNInvalidException };
29
+ var ConflictException = (function (_super) {
30
+ __extends(ConflictException, _super);
31
+ function ConflictException(opts) {
32
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
33
+ _this.name = "ConflictException";
34
+ _this.$fault = "client";
35
+ Object.setPrototypeOf(_this, ConflictException.prototype);
36
+ _this.Message = opts.Message;
37
+ return _this;
38
+ }
39
+ return ConflictException;
40
+ }(__BaseException));
41
+ export { ConflictException };
42
+ var EventDataStoreNotFoundException = (function (_super) {
43
+ __extends(EventDataStoreNotFoundException, _super);
44
+ function EventDataStoreNotFoundException(opts) {
45
+ var _this = _super.call(this, __assign({ name: "EventDataStoreNotFoundException", $fault: "client" }, opts)) || this;
46
+ _this.name = "EventDataStoreNotFoundException";
47
+ _this.$fault = "client";
48
+ Object.setPrototypeOf(_this, EventDataStoreNotFoundException.prototype);
49
+ _this.Message = opts.Message;
50
+ return _this;
51
+ }
52
+ return EventDataStoreNotFoundException;
53
+ }(__BaseException));
54
+ export { EventDataStoreNotFoundException };
55
+ var InactiveEventDataStoreException = (function (_super) {
56
+ __extends(InactiveEventDataStoreException, _super);
57
+ function InactiveEventDataStoreException(opts) {
58
+ var _this = _super.call(this, __assign({ name: "InactiveEventDataStoreException", $fault: "client" }, opts)) || this;
59
+ _this.name = "InactiveEventDataStoreException";
60
+ _this.$fault = "client";
61
+ Object.setPrototypeOf(_this, InactiveEventDataStoreException.prototype);
62
+ _this.Message = opts.Message;
63
+ return _this;
64
+ }
65
+ return InactiveEventDataStoreException;
66
+ }(__BaseException));
67
+ export { InactiveEventDataStoreException };
68
+ var InvalidTagParameterException = (function (_super) {
69
+ __extends(InvalidTagParameterException, _super);
70
+ function InvalidTagParameterException(opts) {
71
+ var _this = _super.call(this, __assign({ name: "InvalidTagParameterException", $fault: "client" }, opts)) || this;
72
+ _this.name = "InvalidTagParameterException";
73
+ _this.$fault = "client";
74
+ Object.setPrototypeOf(_this, InvalidTagParameterException.prototype);
75
+ _this.Message = opts.Message;
76
+ return _this;
77
+ }
78
+ return InvalidTagParameterException;
79
+ }(__BaseException));
80
+ export { InvalidTagParameterException };
81
+ var InvalidTrailNameException = (function (_super) {
82
+ __extends(InvalidTrailNameException, _super);
83
+ function InvalidTrailNameException(opts) {
84
+ var _this = _super.call(this, __assign({ name: "InvalidTrailNameException", $fault: "client" }, opts)) || this;
85
+ _this.name = "InvalidTrailNameException";
86
+ _this.$fault = "client";
87
+ Object.setPrototypeOf(_this, InvalidTrailNameException.prototype);
88
+ _this.Message = opts.Message;
89
+ return _this;
90
+ }
91
+ return InvalidTrailNameException;
92
+ }(__BaseException));
93
+ export { InvalidTrailNameException };
94
+ var NotOrganizationMasterAccountException = (function (_super) {
95
+ __extends(NotOrganizationMasterAccountException, _super);
96
+ function NotOrganizationMasterAccountException(opts) {
97
+ var _this = _super.call(this, __assign({ name: "NotOrganizationMasterAccountException", $fault: "client" }, opts)) || this;
98
+ _this.name = "NotOrganizationMasterAccountException";
99
+ _this.$fault = "client";
100
+ Object.setPrototypeOf(_this, NotOrganizationMasterAccountException.prototype);
101
+ _this.Message = opts.Message;
102
+ return _this;
103
+ }
104
+ return NotOrganizationMasterAccountException;
105
+ }(__BaseException));
106
+ export { NotOrganizationMasterAccountException };
107
+ var OperationNotPermittedException = (function (_super) {
108
+ __extends(OperationNotPermittedException, _super);
109
+ function OperationNotPermittedException(opts) {
110
+ var _this = _super.call(this, __assign({ name: "OperationNotPermittedException", $fault: "client" }, opts)) || this;
111
+ _this.name = "OperationNotPermittedException";
112
+ _this.$fault = "client";
113
+ Object.setPrototypeOf(_this, OperationNotPermittedException.prototype);
114
+ _this.Message = opts.Message;
115
+ return _this;
116
+ }
117
+ return OperationNotPermittedException;
118
+ }(__BaseException));
119
+ export { OperationNotPermittedException };
120
+ var ResourceNotFoundException = (function (_super) {
121
+ __extends(ResourceNotFoundException, _super);
122
+ function ResourceNotFoundException(opts) {
123
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
124
+ _this.name = "ResourceNotFoundException";
125
+ _this.$fault = "client";
126
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
127
+ _this.Message = opts.Message;
128
+ return _this;
129
+ }
130
+ return ResourceNotFoundException;
131
+ }(__BaseException));
132
+ export { ResourceNotFoundException };
133
+ var ResourceTypeNotSupportedException = (function (_super) {
134
+ __extends(ResourceTypeNotSupportedException, _super);
135
+ function ResourceTypeNotSupportedException(opts) {
136
+ var _this = _super.call(this, __assign({ name: "ResourceTypeNotSupportedException", $fault: "client" }, opts)) || this;
137
+ _this.name = "ResourceTypeNotSupportedException";
138
+ _this.$fault = "client";
139
+ Object.setPrototypeOf(_this, ResourceTypeNotSupportedException.prototype);
140
+ _this.Message = opts.Message;
141
+ return _this;
142
+ }
143
+ return ResourceTypeNotSupportedException;
144
+ }(__BaseException));
145
+ export { ResourceTypeNotSupportedException };
146
+ var TagsLimitExceededException = (function (_super) {
147
+ __extends(TagsLimitExceededException, _super);
148
+ function TagsLimitExceededException(opts) {
149
+ var _this = _super.call(this, __assign({ name: "TagsLimitExceededException", $fault: "client" }, opts)) || this;
150
+ _this.name = "TagsLimitExceededException";
151
+ _this.$fault = "client";
152
+ Object.setPrototypeOf(_this, TagsLimitExceededException.prototype);
153
+ _this.Message = opts.Message;
154
+ return _this;
155
+ }
156
+ return TagsLimitExceededException;
157
+ }(__BaseException));
158
+ export { TagsLimitExceededException };
159
+ var UnsupportedOperationException = (function (_super) {
160
+ __extends(UnsupportedOperationException, _super);
161
+ function UnsupportedOperationException(opts) {
162
+ var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
163
+ _this.name = "UnsupportedOperationException";
164
+ _this.$fault = "client";
165
+ Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
166
+ _this.Message = opts.Message;
167
+ return _this;
168
+ }
169
+ return UnsupportedOperationException;
170
+ }(__BaseException));
171
+ export { UnsupportedOperationException };
171
172
  export var QueryStatus;
172
173
  (function (QueryStatus) {
173
174
  QueryStatus["CANCELLED"] = "CANCELLED";
@@ -177,467 +178,467 @@ export var QueryStatus;
177
178
  QueryStatus["RUNNING"] = "RUNNING";
178
179
  QueryStatus["TIMED_OUT"] = "TIMED_OUT";
179
180
  })(QueryStatus || (QueryStatus = {}));
180
- export class EventDataStoreARNInvalidException extends __BaseException {
181
- constructor(opts) {
182
- super({
183
- name: "EventDataStoreARNInvalidException",
184
- $fault: "client",
185
- ...opts,
186
- });
187
- this.name = "EventDataStoreARNInvalidException";
188
- this.$fault = "client";
189
- Object.setPrototypeOf(this, EventDataStoreARNInvalidException.prototype);
190
- this.Message = opts.Message;
191
- }
192
- }
193
- export class InactiveQueryException extends __BaseException {
194
- constructor(opts) {
195
- super({
196
- name: "InactiveQueryException",
197
- $fault: "client",
198
- ...opts,
199
- });
200
- this.name = "InactiveQueryException";
201
- this.$fault = "client";
202
- Object.setPrototypeOf(this, InactiveQueryException.prototype);
203
- this.Message = opts.Message;
204
- }
205
- }
206
- export class InvalidParameterException extends __BaseException {
207
- constructor(opts) {
208
- super({
209
- name: "InvalidParameterException",
210
- $fault: "client",
211
- ...opts,
212
- });
213
- this.name = "InvalidParameterException";
214
- this.$fault = "client";
215
- Object.setPrototypeOf(this, InvalidParameterException.prototype);
216
- this.Message = opts.Message;
217
- }
218
- }
219
- export class QueryIdNotFoundException extends __BaseException {
220
- constructor(opts) {
221
- super({
222
- name: "QueryIdNotFoundException",
223
- $fault: "client",
224
- ...opts,
225
- });
226
- this.name = "QueryIdNotFoundException";
227
- this.$fault = "client";
228
- Object.setPrototypeOf(this, QueryIdNotFoundException.prototype);
229
- this.Message = opts.Message;
230
- }
231
- }
232
- export class ChannelARNInvalidException extends __BaseException {
233
- constructor(opts) {
234
- super({
235
- name: "ChannelARNInvalidException",
236
- $fault: "client",
237
- ...opts,
238
- });
239
- this.name = "ChannelARNInvalidException";
240
- this.$fault = "client";
241
- Object.setPrototypeOf(this, ChannelARNInvalidException.prototype);
242
- this.Message = opts.Message;
243
- }
244
- }
245
- export class ChannelNotFoundException extends __BaseException {
246
- constructor(opts) {
247
- super({
248
- name: "ChannelNotFoundException",
249
- $fault: "client",
250
- ...opts,
251
- });
252
- this.name = "ChannelNotFoundException";
253
- this.$fault = "client";
254
- Object.setPrototypeOf(this, ChannelNotFoundException.prototype);
255
- this.Message = opts.Message;
256
- }
257
- }
258
- export class CloudTrailAccessNotEnabledException extends __BaseException {
259
- constructor(opts) {
260
- super({
261
- name: "CloudTrailAccessNotEnabledException",
262
- $fault: "client",
263
- ...opts,
264
- });
265
- this.name = "CloudTrailAccessNotEnabledException";
266
- this.$fault = "client";
267
- Object.setPrototypeOf(this, CloudTrailAccessNotEnabledException.prototype);
268
- this.Message = opts.Message;
269
- }
270
- }
181
+ var EventDataStoreARNInvalidException = (function (_super) {
182
+ __extends(EventDataStoreARNInvalidException, _super);
183
+ function EventDataStoreARNInvalidException(opts) {
184
+ var _this = _super.call(this, __assign({ name: "EventDataStoreARNInvalidException", $fault: "client" }, opts)) || this;
185
+ _this.name = "EventDataStoreARNInvalidException";
186
+ _this.$fault = "client";
187
+ Object.setPrototypeOf(_this, EventDataStoreARNInvalidException.prototype);
188
+ _this.Message = opts.Message;
189
+ return _this;
190
+ }
191
+ return EventDataStoreARNInvalidException;
192
+ }(__BaseException));
193
+ export { EventDataStoreARNInvalidException };
194
+ var InactiveQueryException = (function (_super) {
195
+ __extends(InactiveQueryException, _super);
196
+ function InactiveQueryException(opts) {
197
+ var _this = _super.call(this, __assign({ name: "InactiveQueryException", $fault: "client" }, opts)) || this;
198
+ _this.name = "InactiveQueryException";
199
+ _this.$fault = "client";
200
+ Object.setPrototypeOf(_this, InactiveQueryException.prototype);
201
+ _this.Message = opts.Message;
202
+ return _this;
203
+ }
204
+ return InactiveQueryException;
205
+ }(__BaseException));
206
+ export { InactiveQueryException };
207
+ var InvalidParameterException = (function (_super) {
208
+ __extends(InvalidParameterException, _super);
209
+ function InvalidParameterException(opts) {
210
+ var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
211
+ _this.name = "InvalidParameterException";
212
+ _this.$fault = "client";
213
+ Object.setPrototypeOf(_this, InvalidParameterException.prototype);
214
+ _this.Message = opts.Message;
215
+ return _this;
216
+ }
217
+ return InvalidParameterException;
218
+ }(__BaseException));
219
+ export { InvalidParameterException };
220
+ var QueryIdNotFoundException = (function (_super) {
221
+ __extends(QueryIdNotFoundException, _super);
222
+ function QueryIdNotFoundException(opts) {
223
+ var _this = _super.call(this, __assign({ name: "QueryIdNotFoundException", $fault: "client" }, opts)) || this;
224
+ _this.name = "QueryIdNotFoundException";
225
+ _this.$fault = "client";
226
+ Object.setPrototypeOf(_this, QueryIdNotFoundException.prototype);
227
+ _this.Message = opts.Message;
228
+ return _this;
229
+ }
230
+ return QueryIdNotFoundException;
231
+ }(__BaseException));
232
+ export { QueryIdNotFoundException };
233
+ var ChannelARNInvalidException = (function (_super) {
234
+ __extends(ChannelARNInvalidException, _super);
235
+ function ChannelARNInvalidException(opts) {
236
+ var _this = _super.call(this, __assign({ name: "ChannelARNInvalidException", $fault: "client" }, opts)) || this;
237
+ _this.name = "ChannelARNInvalidException";
238
+ _this.$fault = "client";
239
+ Object.setPrototypeOf(_this, ChannelARNInvalidException.prototype);
240
+ _this.Message = opts.Message;
241
+ return _this;
242
+ }
243
+ return ChannelARNInvalidException;
244
+ }(__BaseException));
245
+ export { ChannelARNInvalidException };
246
+ var ChannelNotFoundException = (function (_super) {
247
+ __extends(ChannelNotFoundException, _super);
248
+ function ChannelNotFoundException(opts) {
249
+ var _this = _super.call(this, __assign({ name: "ChannelNotFoundException", $fault: "client" }, opts)) || this;
250
+ _this.name = "ChannelNotFoundException";
251
+ _this.$fault = "client";
252
+ Object.setPrototypeOf(_this, ChannelNotFoundException.prototype);
253
+ _this.Message = opts.Message;
254
+ return _this;
255
+ }
256
+ return ChannelNotFoundException;
257
+ }(__BaseException));
258
+ export { ChannelNotFoundException };
259
+ var CloudTrailAccessNotEnabledException = (function (_super) {
260
+ __extends(CloudTrailAccessNotEnabledException, _super);
261
+ function CloudTrailAccessNotEnabledException(opts) {
262
+ var _this = _super.call(this, __assign({ name: "CloudTrailAccessNotEnabledException", $fault: "client" }, opts)) || this;
263
+ _this.name = "CloudTrailAccessNotEnabledException";
264
+ _this.$fault = "client";
265
+ Object.setPrototypeOf(_this, CloudTrailAccessNotEnabledException.prototype);
266
+ _this.Message = opts.Message;
267
+ return _this;
268
+ }
269
+ return CloudTrailAccessNotEnabledException;
270
+ }(__BaseException));
271
+ export { CloudTrailAccessNotEnabledException };
271
272
  export var EventDataStoreStatus;
272
273
  (function (EventDataStoreStatus) {
273
274
  EventDataStoreStatus["CREATED"] = "CREATED";
274
275
  EventDataStoreStatus["ENABLED"] = "ENABLED";
275
276
  EventDataStoreStatus["PENDING_DELETION"] = "PENDING_DELETION";
276
277
  })(EventDataStoreStatus || (EventDataStoreStatus = {}));
277
- export class EventDataStoreAlreadyExistsException extends __BaseException {
278
- constructor(opts) {
279
- super({
280
- name: "EventDataStoreAlreadyExistsException",
281
- $fault: "client",
282
- ...opts,
283
- });
284
- this.name = "EventDataStoreAlreadyExistsException";
285
- this.$fault = "client";
286
- Object.setPrototypeOf(this, EventDataStoreAlreadyExistsException.prototype);
287
- this.Message = opts.Message;
288
- }
289
- }
290
- export class EventDataStoreMaxLimitExceededException extends __BaseException {
291
- constructor(opts) {
292
- super({
293
- name: "EventDataStoreMaxLimitExceededException",
294
- $fault: "client",
295
- ...opts,
296
- });
297
- this.name = "EventDataStoreMaxLimitExceededException";
298
- this.$fault = "client";
299
- Object.setPrototypeOf(this, EventDataStoreMaxLimitExceededException.prototype);
300
- this.Message = opts.Message;
301
- }
302
- }
303
- export class InsufficientDependencyServiceAccessPermissionException extends __BaseException {
304
- constructor(opts) {
305
- super({
306
- name: "InsufficientDependencyServiceAccessPermissionException",
307
- $fault: "client",
308
- ...opts,
309
- });
310
- this.name = "InsufficientDependencyServiceAccessPermissionException";
311
- this.$fault = "client";
312
- Object.setPrototypeOf(this, InsufficientDependencyServiceAccessPermissionException.prototype);
313
- this.Message = opts.Message;
314
- }
315
- }
316
- export class OrganizationNotInAllFeaturesModeException extends __BaseException {
317
- constructor(opts) {
318
- super({
319
- name: "OrganizationNotInAllFeaturesModeException",
320
- $fault: "client",
321
- ...opts,
322
- });
323
- this.name = "OrganizationNotInAllFeaturesModeException";
324
- this.$fault = "client";
325
- Object.setPrototypeOf(this, OrganizationNotInAllFeaturesModeException.prototype);
326
- this.Message = opts.Message;
327
- }
328
- }
329
- export class OrganizationsNotInUseException extends __BaseException {
330
- constructor(opts) {
331
- super({
332
- name: "OrganizationsNotInUseException",
333
- $fault: "client",
334
- ...opts,
335
- });
336
- this.name = "OrganizationsNotInUseException";
337
- this.$fault = "client";
338
- Object.setPrototypeOf(this, OrganizationsNotInUseException.prototype);
339
- this.Message = opts.Message;
340
- }
341
- }
342
- export class CloudTrailInvalidClientTokenIdException extends __BaseException {
343
- constructor(opts) {
344
- super({
345
- name: "CloudTrailInvalidClientTokenIdException",
346
- $fault: "client",
347
- ...opts,
348
- });
349
- this.name = "CloudTrailInvalidClientTokenIdException";
350
- this.$fault = "client";
351
- Object.setPrototypeOf(this, CloudTrailInvalidClientTokenIdException.prototype);
352
- this.Message = opts.Message;
353
- }
354
- }
355
- export class CloudWatchLogsDeliveryUnavailableException extends __BaseException {
356
- constructor(opts) {
357
- super({
358
- name: "CloudWatchLogsDeliveryUnavailableException",
359
- $fault: "client",
360
- ...opts,
361
- });
362
- this.name = "CloudWatchLogsDeliveryUnavailableException";
363
- this.$fault = "client";
364
- Object.setPrototypeOf(this, CloudWatchLogsDeliveryUnavailableException.prototype);
365
- this.Message = opts.Message;
366
- }
367
- }
368
- export class InsufficientEncryptionPolicyException extends __BaseException {
369
- constructor(opts) {
370
- super({
371
- name: "InsufficientEncryptionPolicyException",
372
- $fault: "client",
373
- ...opts,
374
- });
375
- this.name = "InsufficientEncryptionPolicyException";
376
- this.$fault = "client";
377
- Object.setPrototypeOf(this, InsufficientEncryptionPolicyException.prototype);
378
- this.Message = opts.Message;
379
- }
380
- }
381
- export class InsufficientS3BucketPolicyException extends __BaseException {
382
- constructor(opts) {
383
- super({
384
- name: "InsufficientS3BucketPolicyException",
385
- $fault: "client",
386
- ...opts,
387
- });
388
- this.name = "InsufficientS3BucketPolicyException";
389
- this.$fault = "client";
390
- Object.setPrototypeOf(this, InsufficientS3BucketPolicyException.prototype);
391
- this.Message = opts.Message;
392
- }
393
- }
394
- export class InsufficientSnsTopicPolicyException extends __BaseException {
395
- constructor(opts) {
396
- super({
397
- name: "InsufficientSnsTopicPolicyException",
398
- $fault: "client",
399
- ...opts,
400
- });
401
- this.name = "InsufficientSnsTopicPolicyException";
402
- this.$fault = "client";
403
- Object.setPrototypeOf(this, InsufficientSnsTopicPolicyException.prototype);
404
- this.Message = opts.Message;
405
- }
406
- }
407
- export class InvalidCloudWatchLogsLogGroupArnException extends __BaseException {
408
- constructor(opts) {
409
- super({
410
- name: "InvalidCloudWatchLogsLogGroupArnException",
411
- $fault: "client",
412
- ...opts,
413
- });
414
- this.name = "InvalidCloudWatchLogsLogGroupArnException";
415
- this.$fault = "client";
416
- Object.setPrototypeOf(this, InvalidCloudWatchLogsLogGroupArnException.prototype);
417
- this.Message = opts.Message;
418
- }
419
- }
420
- export class InvalidCloudWatchLogsRoleArnException extends __BaseException {
421
- constructor(opts) {
422
- super({
423
- name: "InvalidCloudWatchLogsRoleArnException",
424
- $fault: "client",
425
- ...opts,
426
- });
427
- this.name = "InvalidCloudWatchLogsRoleArnException";
428
- this.$fault = "client";
429
- Object.setPrototypeOf(this, InvalidCloudWatchLogsRoleArnException.prototype);
430
- this.Message = opts.Message;
431
- }
432
- }
433
- export class InvalidKmsKeyIdException extends __BaseException {
434
- constructor(opts) {
435
- super({
436
- name: "InvalidKmsKeyIdException",
437
- $fault: "client",
438
- ...opts,
439
- });
440
- this.name = "InvalidKmsKeyIdException";
441
- this.$fault = "client";
442
- Object.setPrototypeOf(this, InvalidKmsKeyIdException.prototype);
443
- this.Message = opts.Message;
444
- }
445
- }
446
- export class InvalidParameterCombinationException extends __BaseException {
447
- constructor(opts) {
448
- super({
449
- name: "InvalidParameterCombinationException",
450
- $fault: "client",
451
- ...opts,
452
- });
453
- this.name = "InvalidParameterCombinationException";
454
- this.$fault = "client";
455
- Object.setPrototypeOf(this, InvalidParameterCombinationException.prototype);
456
- this.Message = opts.Message;
457
- }
458
- }
459
- export class InvalidS3BucketNameException extends __BaseException {
460
- constructor(opts) {
461
- super({
462
- name: "InvalidS3BucketNameException",
463
- $fault: "client",
464
- ...opts,
465
- });
466
- this.name = "InvalidS3BucketNameException";
467
- this.$fault = "client";
468
- Object.setPrototypeOf(this, InvalidS3BucketNameException.prototype);
469
- this.Message = opts.Message;
470
- }
471
- }
472
- export class InvalidS3PrefixException extends __BaseException {
473
- constructor(opts) {
474
- super({
475
- name: "InvalidS3PrefixException",
476
- $fault: "client",
477
- ...opts,
478
- });
479
- this.name = "InvalidS3PrefixException";
480
- this.$fault = "client";
481
- Object.setPrototypeOf(this, InvalidS3PrefixException.prototype);
482
- this.Message = opts.Message;
483
- }
484
- }
485
- export class InvalidSnsTopicNameException extends __BaseException {
486
- constructor(opts) {
487
- super({
488
- name: "InvalidSnsTopicNameException",
489
- $fault: "client",
490
- ...opts,
491
- });
492
- this.name = "InvalidSnsTopicNameException";
493
- this.$fault = "client";
494
- Object.setPrototypeOf(this, InvalidSnsTopicNameException.prototype);
495
- this.Message = opts.Message;
496
- }
497
- }
498
- export class KmsException extends __BaseException {
499
- constructor(opts) {
500
- super({
501
- name: "KmsException",
502
- $fault: "client",
503
- ...opts,
504
- });
505
- this.name = "KmsException";
506
- this.$fault = "client";
507
- Object.setPrototypeOf(this, KmsException.prototype);
508
- this.Message = opts.Message;
509
- }
510
- }
511
- export class KmsKeyDisabledException extends __BaseException {
512
- constructor(opts) {
513
- super({
514
- name: "KmsKeyDisabledException",
515
- $fault: "client",
516
- ...opts,
517
- });
518
- this.name = "KmsKeyDisabledException";
519
- this.$fault = "client";
520
- Object.setPrototypeOf(this, KmsKeyDisabledException.prototype);
521
- this.Message = opts.Message;
522
- }
523
- }
524
- export class KmsKeyNotFoundException extends __BaseException {
525
- constructor(opts) {
526
- super({
527
- name: "KmsKeyNotFoundException",
528
- $fault: "client",
529
- ...opts,
530
- });
531
- this.name = "KmsKeyNotFoundException";
532
- this.$fault = "client";
533
- Object.setPrototypeOf(this, KmsKeyNotFoundException.prototype);
534
- this.Message = opts.Message;
535
- }
536
- }
537
- export class MaximumNumberOfTrailsExceededException extends __BaseException {
538
- constructor(opts) {
539
- super({
540
- name: "MaximumNumberOfTrailsExceededException",
541
- $fault: "client",
542
- ...opts,
543
- });
544
- this.name = "MaximumNumberOfTrailsExceededException";
545
- this.$fault = "client";
546
- Object.setPrototypeOf(this, MaximumNumberOfTrailsExceededException.prototype);
547
- this.Message = opts.Message;
548
- }
549
- }
550
- export class S3BucketDoesNotExistException extends __BaseException {
551
- constructor(opts) {
552
- super({
553
- name: "S3BucketDoesNotExistException",
554
- $fault: "client",
555
- ...opts,
556
- });
557
- this.name = "S3BucketDoesNotExistException";
558
- this.$fault = "client";
559
- Object.setPrototypeOf(this, S3BucketDoesNotExistException.prototype);
560
- this.Message = opts.Message;
561
- }
562
- }
563
- export class TrailAlreadyExistsException extends __BaseException {
564
- constructor(opts) {
565
- super({
566
- name: "TrailAlreadyExistsException",
567
- $fault: "client",
568
- ...opts,
569
- });
570
- this.name = "TrailAlreadyExistsException";
571
- this.$fault = "client";
572
- Object.setPrototypeOf(this, TrailAlreadyExistsException.prototype);
573
- this.Message = opts.Message;
574
- }
575
- }
576
- export class TrailNotProvidedException extends __BaseException {
577
- constructor(opts) {
578
- super({
579
- name: "TrailNotProvidedException",
580
- $fault: "client",
581
- ...opts,
582
- });
583
- this.name = "TrailNotProvidedException";
584
- this.$fault = "client";
585
- Object.setPrototypeOf(this, TrailNotProvidedException.prototype);
586
- this.Message = opts.Message;
587
- }
588
- }
589
- export class EventDataStoreHasOngoingImportException extends __BaseException {
590
- constructor(opts) {
591
- super({
592
- name: "EventDataStoreHasOngoingImportException",
593
- $fault: "client",
594
- ...opts,
595
- });
596
- this.name = "EventDataStoreHasOngoingImportException";
597
- this.$fault = "client";
598
- Object.setPrototypeOf(this, EventDataStoreHasOngoingImportException.prototype);
599
- this.Message = opts.Message;
600
- }
601
- }
602
- export class EventDataStoreTerminationProtectedException extends __BaseException {
603
- constructor(opts) {
604
- super({
605
- name: "EventDataStoreTerminationProtectedException",
606
- $fault: "client",
607
- ...opts,
608
- });
609
- this.name = "EventDataStoreTerminationProtectedException";
610
- this.$fault = "client";
611
- Object.setPrototypeOf(this, EventDataStoreTerminationProtectedException.prototype);
612
- this.Message = opts.Message;
613
- }
614
- }
615
- export class InvalidHomeRegionException extends __BaseException {
616
- constructor(opts) {
617
- super({
618
- name: "InvalidHomeRegionException",
619
- $fault: "client",
620
- ...opts,
621
- });
622
- this.name = "InvalidHomeRegionException";
623
- this.$fault = "client";
624
- Object.setPrototypeOf(this, InvalidHomeRegionException.prototype);
625
- this.Message = opts.Message;
626
- }
627
- }
628
- export class TrailNotFoundException extends __BaseException {
629
- constructor(opts) {
630
- super({
631
- name: "TrailNotFoundException",
632
- $fault: "client",
633
- ...opts,
634
- });
635
- this.name = "TrailNotFoundException";
636
- this.$fault = "client";
637
- Object.setPrototypeOf(this, TrailNotFoundException.prototype);
638
- this.Message = opts.Message;
639
- }
640
- }
278
+ var EventDataStoreAlreadyExistsException = (function (_super) {
279
+ __extends(EventDataStoreAlreadyExistsException, _super);
280
+ function EventDataStoreAlreadyExistsException(opts) {
281
+ var _this = _super.call(this, __assign({ name: "EventDataStoreAlreadyExistsException", $fault: "client" }, opts)) || this;
282
+ _this.name = "EventDataStoreAlreadyExistsException";
283
+ _this.$fault = "client";
284
+ Object.setPrototypeOf(_this, EventDataStoreAlreadyExistsException.prototype);
285
+ _this.Message = opts.Message;
286
+ return _this;
287
+ }
288
+ return EventDataStoreAlreadyExistsException;
289
+ }(__BaseException));
290
+ export { EventDataStoreAlreadyExistsException };
291
+ var EventDataStoreMaxLimitExceededException = (function (_super) {
292
+ __extends(EventDataStoreMaxLimitExceededException, _super);
293
+ function EventDataStoreMaxLimitExceededException(opts) {
294
+ var _this = _super.call(this, __assign({ name: "EventDataStoreMaxLimitExceededException", $fault: "client" }, opts)) || this;
295
+ _this.name = "EventDataStoreMaxLimitExceededException";
296
+ _this.$fault = "client";
297
+ Object.setPrototypeOf(_this, EventDataStoreMaxLimitExceededException.prototype);
298
+ _this.Message = opts.Message;
299
+ return _this;
300
+ }
301
+ return EventDataStoreMaxLimitExceededException;
302
+ }(__BaseException));
303
+ export { EventDataStoreMaxLimitExceededException };
304
+ var InsufficientDependencyServiceAccessPermissionException = (function (_super) {
305
+ __extends(InsufficientDependencyServiceAccessPermissionException, _super);
306
+ function InsufficientDependencyServiceAccessPermissionException(opts) {
307
+ var _this = _super.call(this, __assign({ name: "InsufficientDependencyServiceAccessPermissionException", $fault: "client" }, opts)) || this;
308
+ _this.name = "InsufficientDependencyServiceAccessPermissionException";
309
+ _this.$fault = "client";
310
+ Object.setPrototypeOf(_this, InsufficientDependencyServiceAccessPermissionException.prototype);
311
+ _this.Message = opts.Message;
312
+ return _this;
313
+ }
314
+ return InsufficientDependencyServiceAccessPermissionException;
315
+ }(__BaseException));
316
+ export { InsufficientDependencyServiceAccessPermissionException };
317
+ var OrganizationNotInAllFeaturesModeException = (function (_super) {
318
+ __extends(OrganizationNotInAllFeaturesModeException, _super);
319
+ function OrganizationNotInAllFeaturesModeException(opts) {
320
+ var _this = _super.call(this, __assign({ name: "OrganizationNotInAllFeaturesModeException", $fault: "client" }, opts)) || this;
321
+ _this.name = "OrganizationNotInAllFeaturesModeException";
322
+ _this.$fault = "client";
323
+ Object.setPrototypeOf(_this, OrganizationNotInAllFeaturesModeException.prototype);
324
+ _this.Message = opts.Message;
325
+ return _this;
326
+ }
327
+ return OrganizationNotInAllFeaturesModeException;
328
+ }(__BaseException));
329
+ export { OrganizationNotInAllFeaturesModeException };
330
+ var OrganizationsNotInUseException = (function (_super) {
331
+ __extends(OrganizationsNotInUseException, _super);
332
+ function OrganizationsNotInUseException(opts) {
333
+ var _this = _super.call(this, __assign({ name: "OrganizationsNotInUseException", $fault: "client" }, opts)) || this;
334
+ _this.name = "OrganizationsNotInUseException";
335
+ _this.$fault = "client";
336
+ Object.setPrototypeOf(_this, OrganizationsNotInUseException.prototype);
337
+ _this.Message = opts.Message;
338
+ return _this;
339
+ }
340
+ return OrganizationsNotInUseException;
341
+ }(__BaseException));
342
+ export { OrganizationsNotInUseException };
343
+ var CloudTrailInvalidClientTokenIdException = (function (_super) {
344
+ __extends(CloudTrailInvalidClientTokenIdException, _super);
345
+ function CloudTrailInvalidClientTokenIdException(opts) {
346
+ var _this = _super.call(this, __assign({ name: "CloudTrailInvalidClientTokenIdException", $fault: "client" }, opts)) || this;
347
+ _this.name = "CloudTrailInvalidClientTokenIdException";
348
+ _this.$fault = "client";
349
+ Object.setPrototypeOf(_this, CloudTrailInvalidClientTokenIdException.prototype);
350
+ _this.Message = opts.Message;
351
+ return _this;
352
+ }
353
+ return CloudTrailInvalidClientTokenIdException;
354
+ }(__BaseException));
355
+ export { CloudTrailInvalidClientTokenIdException };
356
+ var CloudWatchLogsDeliveryUnavailableException = (function (_super) {
357
+ __extends(CloudWatchLogsDeliveryUnavailableException, _super);
358
+ function CloudWatchLogsDeliveryUnavailableException(opts) {
359
+ var _this = _super.call(this, __assign({ name: "CloudWatchLogsDeliveryUnavailableException", $fault: "client" }, opts)) || this;
360
+ _this.name = "CloudWatchLogsDeliveryUnavailableException";
361
+ _this.$fault = "client";
362
+ Object.setPrototypeOf(_this, CloudWatchLogsDeliveryUnavailableException.prototype);
363
+ _this.Message = opts.Message;
364
+ return _this;
365
+ }
366
+ return CloudWatchLogsDeliveryUnavailableException;
367
+ }(__BaseException));
368
+ export { CloudWatchLogsDeliveryUnavailableException };
369
+ var InsufficientEncryptionPolicyException = (function (_super) {
370
+ __extends(InsufficientEncryptionPolicyException, _super);
371
+ function InsufficientEncryptionPolicyException(opts) {
372
+ var _this = _super.call(this, __assign({ name: "InsufficientEncryptionPolicyException", $fault: "client" }, opts)) || this;
373
+ _this.name = "InsufficientEncryptionPolicyException";
374
+ _this.$fault = "client";
375
+ Object.setPrototypeOf(_this, InsufficientEncryptionPolicyException.prototype);
376
+ _this.Message = opts.Message;
377
+ return _this;
378
+ }
379
+ return InsufficientEncryptionPolicyException;
380
+ }(__BaseException));
381
+ export { InsufficientEncryptionPolicyException };
382
+ var InsufficientS3BucketPolicyException = (function (_super) {
383
+ __extends(InsufficientS3BucketPolicyException, _super);
384
+ function InsufficientS3BucketPolicyException(opts) {
385
+ var _this = _super.call(this, __assign({ name: "InsufficientS3BucketPolicyException", $fault: "client" }, opts)) || this;
386
+ _this.name = "InsufficientS3BucketPolicyException";
387
+ _this.$fault = "client";
388
+ Object.setPrototypeOf(_this, InsufficientS3BucketPolicyException.prototype);
389
+ _this.Message = opts.Message;
390
+ return _this;
391
+ }
392
+ return InsufficientS3BucketPolicyException;
393
+ }(__BaseException));
394
+ export { InsufficientS3BucketPolicyException };
395
+ var InsufficientSnsTopicPolicyException = (function (_super) {
396
+ __extends(InsufficientSnsTopicPolicyException, _super);
397
+ function InsufficientSnsTopicPolicyException(opts) {
398
+ var _this = _super.call(this, __assign({ name: "InsufficientSnsTopicPolicyException", $fault: "client" }, opts)) || this;
399
+ _this.name = "InsufficientSnsTopicPolicyException";
400
+ _this.$fault = "client";
401
+ Object.setPrototypeOf(_this, InsufficientSnsTopicPolicyException.prototype);
402
+ _this.Message = opts.Message;
403
+ return _this;
404
+ }
405
+ return InsufficientSnsTopicPolicyException;
406
+ }(__BaseException));
407
+ export { InsufficientSnsTopicPolicyException };
408
+ var InvalidCloudWatchLogsLogGroupArnException = (function (_super) {
409
+ __extends(InvalidCloudWatchLogsLogGroupArnException, _super);
410
+ function InvalidCloudWatchLogsLogGroupArnException(opts) {
411
+ var _this = _super.call(this, __assign({ name: "InvalidCloudWatchLogsLogGroupArnException", $fault: "client" }, opts)) || this;
412
+ _this.name = "InvalidCloudWatchLogsLogGroupArnException";
413
+ _this.$fault = "client";
414
+ Object.setPrototypeOf(_this, InvalidCloudWatchLogsLogGroupArnException.prototype);
415
+ _this.Message = opts.Message;
416
+ return _this;
417
+ }
418
+ return InvalidCloudWatchLogsLogGroupArnException;
419
+ }(__BaseException));
420
+ export { InvalidCloudWatchLogsLogGroupArnException };
421
+ var InvalidCloudWatchLogsRoleArnException = (function (_super) {
422
+ __extends(InvalidCloudWatchLogsRoleArnException, _super);
423
+ function InvalidCloudWatchLogsRoleArnException(opts) {
424
+ var _this = _super.call(this, __assign({ name: "InvalidCloudWatchLogsRoleArnException", $fault: "client" }, opts)) || this;
425
+ _this.name = "InvalidCloudWatchLogsRoleArnException";
426
+ _this.$fault = "client";
427
+ Object.setPrototypeOf(_this, InvalidCloudWatchLogsRoleArnException.prototype);
428
+ _this.Message = opts.Message;
429
+ return _this;
430
+ }
431
+ return InvalidCloudWatchLogsRoleArnException;
432
+ }(__BaseException));
433
+ export { InvalidCloudWatchLogsRoleArnException };
434
+ var InvalidKmsKeyIdException = (function (_super) {
435
+ __extends(InvalidKmsKeyIdException, _super);
436
+ function InvalidKmsKeyIdException(opts) {
437
+ var _this = _super.call(this, __assign({ name: "InvalidKmsKeyIdException", $fault: "client" }, opts)) || this;
438
+ _this.name = "InvalidKmsKeyIdException";
439
+ _this.$fault = "client";
440
+ Object.setPrototypeOf(_this, InvalidKmsKeyIdException.prototype);
441
+ _this.Message = opts.Message;
442
+ return _this;
443
+ }
444
+ return InvalidKmsKeyIdException;
445
+ }(__BaseException));
446
+ export { InvalidKmsKeyIdException };
447
+ var InvalidParameterCombinationException = (function (_super) {
448
+ __extends(InvalidParameterCombinationException, _super);
449
+ function InvalidParameterCombinationException(opts) {
450
+ var _this = _super.call(this, __assign({ name: "InvalidParameterCombinationException", $fault: "client" }, opts)) || this;
451
+ _this.name = "InvalidParameterCombinationException";
452
+ _this.$fault = "client";
453
+ Object.setPrototypeOf(_this, InvalidParameterCombinationException.prototype);
454
+ _this.Message = opts.Message;
455
+ return _this;
456
+ }
457
+ return InvalidParameterCombinationException;
458
+ }(__BaseException));
459
+ export { InvalidParameterCombinationException };
460
+ var InvalidS3BucketNameException = (function (_super) {
461
+ __extends(InvalidS3BucketNameException, _super);
462
+ function InvalidS3BucketNameException(opts) {
463
+ var _this = _super.call(this, __assign({ name: "InvalidS3BucketNameException", $fault: "client" }, opts)) || this;
464
+ _this.name = "InvalidS3BucketNameException";
465
+ _this.$fault = "client";
466
+ Object.setPrototypeOf(_this, InvalidS3BucketNameException.prototype);
467
+ _this.Message = opts.Message;
468
+ return _this;
469
+ }
470
+ return InvalidS3BucketNameException;
471
+ }(__BaseException));
472
+ export { InvalidS3BucketNameException };
473
+ var InvalidS3PrefixException = (function (_super) {
474
+ __extends(InvalidS3PrefixException, _super);
475
+ function InvalidS3PrefixException(opts) {
476
+ var _this = _super.call(this, __assign({ name: "InvalidS3PrefixException", $fault: "client" }, opts)) || this;
477
+ _this.name = "InvalidS3PrefixException";
478
+ _this.$fault = "client";
479
+ Object.setPrototypeOf(_this, InvalidS3PrefixException.prototype);
480
+ _this.Message = opts.Message;
481
+ return _this;
482
+ }
483
+ return InvalidS3PrefixException;
484
+ }(__BaseException));
485
+ export { InvalidS3PrefixException };
486
+ var InvalidSnsTopicNameException = (function (_super) {
487
+ __extends(InvalidSnsTopicNameException, _super);
488
+ function InvalidSnsTopicNameException(opts) {
489
+ var _this = _super.call(this, __assign({ name: "InvalidSnsTopicNameException", $fault: "client" }, opts)) || this;
490
+ _this.name = "InvalidSnsTopicNameException";
491
+ _this.$fault = "client";
492
+ Object.setPrototypeOf(_this, InvalidSnsTopicNameException.prototype);
493
+ _this.Message = opts.Message;
494
+ return _this;
495
+ }
496
+ return InvalidSnsTopicNameException;
497
+ }(__BaseException));
498
+ export { InvalidSnsTopicNameException };
499
+ var KmsException = (function (_super) {
500
+ __extends(KmsException, _super);
501
+ function KmsException(opts) {
502
+ var _this = _super.call(this, __assign({ name: "KmsException", $fault: "client" }, opts)) || this;
503
+ _this.name = "KmsException";
504
+ _this.$fault = "client";
505
+ Object.setPrototypeOf(_this, KmsException.prototype);
506
+ _this.Message = opts.Message;
507
+ return _this;
508
+ }
509
+ return KmsException;
510
+ }(__BaseException));
511
+ export { KmsException };
512
+ var KmsKeyDisabledException = (function (_super) {
513
+ __extends(KmsKeyDisabledException, _super);
514
+ function KmsKeyDisabledException(opts) {
515
+ var _this = _super.call(this, __assign({ name: "KmsKeyDisabledException", $fault: "client" }, opts)) || this;
516
+ _this.name = "KmsKeyDisabledException";
517
+ _this.$fault = "client";
518
+ Object.setPrototypeOf(_this, KmsKeyDisabledException.prototype);
519
+ _this.Message = opts.Message;
520
+ return _this;
521
+ }
522
+ return KmsKeyDisabledException;
523
+ }(__BaseException));
524
+ export { KmsKeyDisabledException };
525
+ var KmsKeyNotFoundException = (function (_super) {
526
+ __extends(KmsKeyNotFoundException, _super);
527
+ function KmsKeyNotFoundException(opts) {
528
+ var _this = _super.call(this, __assign({ name: "KmsKeyNotFoundException", $fault: "client" }, opts)) || this;
529
+ _this.name = "KmsKeyNotFoundException";
530
+ _this.$fault = "client";
531
+ Object.setPrototypeOf(_this, KmsKeyNotFoundException.prototype);
532
+ _this.Message = opts.Message;
533
+ return _this;
534
+ }
535
+ return KmsKeyNotFoundException;
536
+ }(__BaseException));
537
+ export { KmsKeyNotFoundException };
538
+ var MaximumNumberOfTrailsExceededException = (function (_super) {
539
+ __extends(MaximumNumberOfTrailsExceededException, _super);
540
+ function MaximumNumberOfTrailsExceededException(opts) {
541
+ var _this = _super.call(this, __assign({ name: "MaximumNumberOfTrailsExceededException", $fault: "client" }, opts)) || this;
542
+ _this.name = "MaximumNumberOfTrailsExceededException";
543
+ _this.$fault = "client";
544
+ Object.setPrototypeOf(_this, MaximumNumberOfTrailsExceededException.prototype);
545
+ _this.Message = opts.Message;
546
+ return _this;
547
+ }
548
+ return MaximumNumberOfTrailsExceededException;
549
+ }(__BaseException));
550
+ export { MaximumNumberOfTrailsExceededException };
551
+ var S3BucketDoesNotExistException = (function (_super) {
552
+ __extends(S3BucketDoesNotExistException, _super);
553
+ function S3BucketDoesNotExistException(opts) {
554
+ var _this = _super.call(this, __assign({ name: "S3BucketDoesNotExistException", $fault: "client" }, opts)) || this;
555
+ _this.name = "S3BucketDoesNotExistException";
556
+ _this.$fault = "client";
557
+ Object.setPrototypeOf(_this, S3BucketDoesNotExistException.prototype);
558
+ _this.Message = opts.Message;
559
+ return _this;
560
+ }
561
+ return S3BucketDoesNotExistException;
562
+ }(__BaseException));
563
+ export { S3BucketDoesNotExistException };
564
+ var TrailAlreadyExistsException = (function (_super) {
565
+ __extends(TrailAlreadyExistsException, _super);
566
+ function TrailAlreadyExistsException(opts) {
567
+ var _this = _super.call(this, __assign({ name: "TrailAlreadyExistsException", $fault: "client" }, opts)) || this;
568
+ _this.name = "TrailAlreadyExistsException";
569
+ _this.$fault = "client";
570
+ Object.setPrototypeOf(_this, TrailAlreadyExistsException.prototype);
571
+ _this.Message = opts.Message;
572
+ return _this;
573
+ }
574
+ return TrailAlreadyExistsException;
575
+ }(__BaseException));
576
+ export { TrailAlreadyExistsException };
577
+ var TrailNotProvidedException = (function (_super) {
578
+ __extends(TrailNotProvidedException, _super);
579
+ function TrailNotProvidedException(opts) {
580
+ var _this = _super.call(this, __assign({ name: "TrailNotProvidedException", $fault: "client" }, opts)) || this;
581
+ _this.name = "TrailNotProvidedException";
582
+ _this.$fault = "client";
583
+ Object.setPrototypeOf(_this, TrailNotProvidedException.prototype);
584
+ _this.Message = opts.Message;
585
+ return _this;
586
+ }
587
+ return TrailNotProvidedException;
588
+ }(__BaseException));
589
+ export { TrailNotProvidedException };
590
+ var EventDataStoreHasOngoingImportException = (function (_super) {
591
+ __extends(EventDataStoreHasOngoingImportException, _super);
592
+ function EventDataStoreHasOngoingImportException(opts) {
593
+ var _this = _super.call(this, __assign({ name: "EventDataStoreHasOngoingImportException", $fault: "client" }, opts)) || this;
594
+ _this.name = "EventDataStoreHasOngoingImportException";
595
+ _this.$fault = "client";
596
+ Object.setPrototypeOf(_this, EventDataStoreHasOngoingImportException.prototype);
597
+ _this.Message = opts.Message;
598
+ return _this;
599
+ }
600
+ return EventDataStoreHasOngoingImportException;
601
+ }(__BaseException));
602
+ export { EventDataStoreHasOngoingImportException };
603
+ var EventDataStoreTerminationProtectedException = (function (_super) {
604
+ __extends(EventDataStoreTerminationProtectedException, _super);
605
+ function EventDataStoreTerminationProtectedException(opts) {
606
+ var _this = _super.call(this, __assign({ name: "EventDataStoreTerminationProtectedException", $fault: "client" }, opts)) || this;
607
+ _this.name = "EventDataStoreTerminationProtectedException";
608
+ _this.$fault = "client";
609
+ Object.setPrototypeOf(_this, EventDataStoreTerminationProtectedException.prototype);
610
+ _this.Message = opts.Message;
611
+ return _this;
612
+ }
613
+ return EventDataStoreTerminationProtectedException;
614
+ }(__BaseException));
615
+ export { EventDataStoreTerminationProtectedException };
616
+ var InvalidHomeRegionException = (function (_super) {
617
+ __extends(InvalidHomeRegionException, _super);
618
+ function InvalidHomeRegionException(opts) {
619
+ var _this = _super.call(this, __assign({ name: "InvalidHomeRegionException", $fault: "client" }, opts)) || this;
620
+ _this.name = "InvalidHomeRegionException";
621
+ _this.$fault = "client";
622
+ Object.setPrototypeOf(_this, InvalidHomeRegionException.prototype);
623
+ _this.Message = opts.Message;
624
+ return _this;
625
+ }
626
+ return InvalidHomeRegionException;
627
+ }(__BaseException));
628
+ export { InvalidHomeRegionException };
629
+ var TrailNotFoundException = (function (_super) {
630
+ __extends(TrailNotFoundException, _super);
631
+ function TrailNotFoundException(opts) {
632
+ var _this = _super.call(this, __assign({ name: "TrailNotFoundException", $fault: "client" }, opts)) || this;
633
+ _this.name = "TrailNotFoundException";
634
+ _this.$fault = "client";
635
+ Object.setPrototypeOf(_this, TrailNotFoundException.prototype);
636
+ _this.Message = opts.Message;
637
+ return _this;
638
+ }
639
+ return TrailNotFoundException;
640
+ }(__BaseException));
641
+ export { TrailNotFoundException };
641
642
  export var DestinationType;
642
643
  (function (DestinationType) {
643
644
  DestinationType["AWS_SERVICE"] = "AWS_SERVICE";
@@ -657,147 +658,147 @@ export var ImportStatus;
657
658
  ImportStatus["IN_PROGRESS"] = "IN_PROGRESS";
658
659
  ImportStatus["STOPPED"] = "STOPPED";
659
660
  })(ImportStatus || (ImportStatus = {}));
660
- export class ImportNotFoundException extends __BaseException {
661
- constructor(opts) {
662
- super({
663
- name: "ImportNotFoundException",
664
- $fault: "client",
665
- ...opts,
666
- });
667
- this.name = "ImportNotFoundException";
668
- this.$fault = "client";
669
- Object.setPrototypeOf(this, ImportNotFoundException.prototype);
670
- this.Message = opts.Message;
671
- }
672
- }
661
+ var ImportNotFoundException = (function (_super) {
662
+ __extends(ImportNotFoundException, _super);
663
+ function ImportNotFoundException(opts) {
664
+ var _this = _super.call(this, __assign({ name: "ImportNotFoundException", $fault: "client" }, opts)) || this;
665
+ _this.name = "ImportNotFoundException";
666
+ _this.$fault = "client";
667
+ Object.setPrototypeOf(_this, ImportNotFoundException.prototype);
668
+ _this.Message = opts.Message;
669
+ return _this;
670
+ }
671
+ return ImportNotFoundException;
672
+ }(__BaseException));
673
+ export { ImportNotFoundException };
673
674
  export var InsightType;
674
675
  (function (InsightType) {
675
676
  InsightType["ApiCallRateInsight"] = "ApiCallRateInsight";
676
677
  InsightType["ApiErrorRateInsight"] = "ApiErrorRateInsight";
677
678
  })(InsightType || (InsightType = {}));
678
- export class InsightNotEnabledException extends __BaseException {
679
- constructor(opts) {
680
- super({
681
- name: "InsightNotEnabledException",
682
- $fault: "client",
683
- ...opts,
684
- });
685
- this.name = "InsightNotEnabledException";
686
- this.$fault = "client";
687
- Object.setPrototypeOf(this, InsightNotEnabledException.prototype);
688
- this.Message = opts.Message;
689
- }
690
- }
691
- export class InvalidMaxResultsException extends __BaseException {
692
- constructor(opts) {
693
- super({
694
- name: "InvalidMaxResultsException",
695
- $fault: "client",
696
- ...opts,
697
- });
698
- this.name = "InvalidMaxResultsException";
699
- this.$fault = "client";
700
- Object.setPrototypeOf(this, InvalidMaxResultsException.prototype);
701
- this.Message = opts.Message;
702
- }
703
- }
704
- export class InvalidNextTokenException extends __BaseException {
705
- constructor(opts) {
706
- super({
707
- name: "InvalidNextTokenException",
708
- $fault: "client",
709
- ...opts,
710
- });
711
- this.name = "InvalidNextTokenException";
712
- this.$fault = "client";
713
- Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
714
- this.Message = opts.Message;
715
- }
716
- }
679
+ var InsightNotEnabledException = (function (_super) {
680
+ __extends(InsightNotEnabledException, _super);
681
+ function InsightNotEnabledException(opts) {
682
+ var _this = _super.call(this, __assign({ name: "InsightNotEnabledException", $fault: "client" }, opts)) || this;
683
+ _this.name = "InsightNotEnabledException";
684
+ _this.$fault = "client";
685
+ Object.setPrototypeOf(_this, InsightNotEnabledException.prototype);
686
+ _this.Message = opts.Message;
687
+ return _this;
688
+ }
689
+ return InsightNotEnabledException;
690
+ }(__BaseException));
691
+ export { InsightNotEnabledException };
692
+ var InvalidMaxResultsException = (function (_super) {
693
+ __extends(InvalidMaxResultsException, _super);
694
+ function InvalidMaxResultsException(opts) {
695
+ var _this = _super.call(this, __assign({ name: "InvalidMaxResultsException", $fault: "client" }, opts)) || this;
696
+ _this.name = "InvalidMaxResultsException";
697
+ _this.$fault = "client";
698
+ Object.setPrototypeOf(_this, InvalidMaxResultsException.prototype);
699
+ _this.Message = opts.Message;
700
+ return _this;
701
+ }
702
+ return InvalidMaxResultsException;
703
+ }(__BaseException));
704
+ export { InvalidMaxResultsException };
705
+ var InvalidNextTokenException = (function (_super) {
706
+ __extends(InvalidNextTokenException, _super);
707
+ function InvalidNextTokenException(opts) {
708
+ var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
709
+ _this.name = "InvalidNextTokenException";
710
+ _this.$fault = "client";
711
+ Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
712
+ _this.Message = opts.Message;
713
+ return _this;
714
+ }
715
+ return InvalidNextTokenException;
716
+ }(__BaseException));
717
+ export { InvalidNextTokenException };
717
718
  export var ImportFailureStatus;
718
719
  (function (ImportFailureStatus) {
719
720
  ImportFailureStatus["FAILED"] = "FAILED";
720
721
  ImportFailureStatus["RETRY"] = "RETRY";
721
722
  ImportFailureStatus["SUCCEEDED"] = "SUCCEEDED";
722
723
  })(ImportFailureStatus || (ImportFailureStatus = {}));
723
- export class InvalidTimeRangeException extends __BaseException {
724
- constructor(opts) {
725
- super({
726
- name: "InvalidTimeRangeException",
727
- $fault: "client",
728
- ...opts,
729
- });
730
- this.name = "InvalidTimeRangeException";
731
- this.$fault = "client";
732
- Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
733
- this.Message = opts.Message;
734
- }
735
- }
736
- export class InvalidTokenException extends __BaseException {
737
- constructor(opts) {
738
- super({
739
- name: "InvalidTokenException",
740
- $fault: "client",
741
- ...opts,
742
- });
743
- this.name = "InvalidTokenException";
744
- this.$fault = "client";
745
- Object.setPrototypeOf(this, InvalidTokenException.prototype);
746
- this.Message = opts.Message;
747
- }
748
- }
749
- export class InvalidDateRangeException extends __BaseException {
750
- constructor(opts) {
751
- super({
752
- name: "InvalidDateRangeException",
753
- $fault: "client",
754
- ...opts,
755
- });
756
- this.name = "InvalidDateRangeException";
757
- this.$fault = "client";
758
- Object.setPrototypeOf(this, InvalidDateRangeException.prototype);
759
- this.Message = opts.Message;
760
- }
761
- }
762
- export class InvalidQueryStatusException extends __BaseException {
763
- constructor(opts) {
764
- super({
765
- name: "InvalidQueryStatusException",
766
- $fault: "client",
767
- ...opts,
768
- });
769
- this.name = "InvalidQueryStatusException";
770
- this.$fault = "client";
771
- Object.setPrototypeOf(this, InvalidQueryStatusException.prototype);
772
- this.Message = opts.Message;
773
- }
774
- }
775
- export class InvalidEventCategoryException extends __BaseException {
776
- constructor(opts) {
777
- super({
778
- name: "InvalidEventCategoryException",
779
- $fault: "client",
780
- ...opts,
781
- });
782
- this.name = "InvalidEventCategoryException";
783
- this.$fault = "client";
784
- Object.setPrototypeOf(this, InvalidEventCategoryException.prototype);
785
- this.Message = opts.Message;
786
- }
787
- }
788
- export class InvalidLookupAttributesException extends __BaseException {
789
- constructor(opts) {
790
- super({
791
- name: "InvalidLookupAttributesException",
792
- $fault: "client",
793
- ...opts,
794
- });
795
- this.name = "InvalidLookupAttributesException";
796
- this.$fault = "client";
797
- Object.setPrototypeOf(this, InvalidLookupAttributesException.prototype);
798
- this.Message = opts.Message;
799
- }
800
- }
724
+ var InvalidTimeRangeException = (function (_super) {
725
+ __extends(InvalidTimeRangeException, _super);
726
+ function InvalidTimeRangeException(opts) {
727
+ var _this = _super.call(this, __assign({ name: "InvalidTimeRangeException", $fault: "client" }, opts)) || this;
728
+ _this.name = "InvalidTimeRangeException";
729
+ _this.$fault = "client";
730
+ Object.setPrototypeOf(_this, InvalidTimeRangeException.prototype);
731
+ _this.Message = opts.Message;
732
+ return _this;
733
+ }
734
+ return InvalidTimeRangeException;
735
+ }(__BaseException));
736
+ export { InvalidTimeRangeException };
737
+ var InvalidTokenException = (function (_super) {
738
+ __extends(InvalidTokenException, _super);
739
+ function InvalidTokenException(opts) {
740
+ var _this = _super.call(this, __assign({ name: "InvalidTokenException", $fault: "client" }, opts)) || this;
741
+ _this.name = "InvalidTokenException";
742
+ _this.$fault = "client";
743
+ Object.setPrototypeOf(_this, InvalidTokenException.prototype);
744
+ _this.Message = opts.Message;
745
+ return _this;
746
+ }
747
+ return InvalidTokenException;
748
+ }(__BaseException));
749
+ export { InvalidTokenException };
750
+ var InvalidDateRangeException = (function (_super) {
751
+ __extends(InvalidDateRangeException, _super);
752
+ function InvalidDateRangeException(opts) {
753
+ var _this = _super.call(this, __assign({ name: "InvalidDateRangeException", $fault: "client" }, opts)) || this;
754
+ _this.name = "InvalidDateRangeException";
755
+ _this.$fault = "client";
756
+ Object.setPrototypeOf(_this, InvalidDateRangeException.prototype);
757
+ _this.Message = opts.Message;
758
+ return _this;
759
+ }
760
+ return InvalidDateRangeException;
761
+ }(__BaseException));
762
+ export { InvalidDateRangeException };
763
+ var InvalidQueryStatusException = (function (_super) {
764
+ __extends(InvalidQueryStatusException, _super);
765
+ function InvalidQueryStatusException(opts) {
766
+ var _this = _super.call(this, __assign({ name: "InvalidQueryStatusException", $fault: "client" }, opts)) || this;
767
+ _this.name = "InvalidQueryStatusException";
768
+ _this.$fault = "client";
769
+ Object.setPrototypeOf(_this, InvalidQueryStatusException.prototype);
770
+ _this.Message = opts.Message;
771
+ return _this;
772
+ }
773
+ return InvalidQueryStatusException;
774
+ }(__BaseException));
775
+ export { InvalidQueryStatusException };
776
+ var InvalidEventCategoryException = (function (_super) {
777
+ __extends(InvalidEventCategoryException, _super);
778
+ function InvalidEventCategoryException(opts) {
779
+ var _this = _super.call(this, __assign({ name: "InvalidEventCategoryException", $fault: "client" }, opts)) || this;
780
+ _this.name = "InvalidEventCategoryException";
781
+ _this.$fault = "client";
782
+ Object.setPrototypeOf(_this, InvalidEventCategoryException.prototype);
783
+ _this.Message = opts.Message;
784
+ return _this;
785
+ }
786
+ return InvalidEventCategoryException;
787
+ }(__BaseException));
788
+ export { InvalidEventCategoryException };
789
+ var InvalidLookupAttributesException = (function (_super) {
790
+ __extends(InvalidLookupAttributesException, _super);
791
+ function InvalidLookupAttributesException(opts) {
792
+ var _this = _super.call(this, __assign({ name: "InvalidLookupAttributesException", $fault: "client" }, opts)) || this;
793
+ _this.name = "InvalidLookupAttributesException";
794
+ _this.$fault = "client";
795
+ Object.setPrototypeOf(_this, InvalidLookupAttributesException.prototype);
796
+ _this.Message = opts.Message;
797
+ return _this;
798
+ }
799
+ return InvalidLookupAttributesException;
800
+ }(__BaseException));
801
+ export { InvalidLookupAttributesException };
801
802
  export var EventCategory;
802
803
  (function (EventCategory) {
803
804
  EventCategory["Insight"] = "insight";
@@ -813,385 +814,191 @@ export var LookupAttributeKey;
813
814
  LookupAttributeKey["RESOURCE_TYPE"] = "ResourceType";
814
815
  LookupAttributeKey["USERNAME"] = "Username";
815
816
  })(LookupAttributeKey || (LookupAttributeKey = {}));
816
- export class InvalidEventSelectorsException extends __BaseException {
817
- constructor(opts) {
818
- super({
819
- name: "InvalidEventSelectorsException",
820
- $fault: "client",
821
- ...opts,
822
- });
823
- this.name = "InvalidEventSelectorsException";
824
- this.$fault = "client";
825
- Object.setPrototypeOf(this, InvalidEventSelectorsException.prototype);
826
- this.Message = opts.Message;
827
- }
828
- }
829
- export class InvalidInsightSelectorsException extends __BaseException {
830
- constructor(opts) {
831
- super({
832
- name: "InvalidInsightSelectorsException",
833
- $fault: "client",
834
- ...opts,
835
- });
836
- this.name = "InvalidInsightSelectorsException";
837
- this.$fault = "client";
838
- Object.setPrototypeOf(this, InvalidInsightSelectorsException.prototype);
839
- this.Message = opts.Message;
840
- }
841
- }
842
- export class InvalidEventDataStoreStatusException extends __BaseException {
843
- constructor(opts) {
844
- super({
845
- name: "InvalidEventDataStoreStatusException",
846
- $fault: "client",
847
- ...opts,
848
- });
849
- this.name = "InvalidEventDataStoreStatusException";
850
- this.$fault = "client";
851
- Object.setPrototypeOf(this, InvalidEventDataStoreStatusException.prototype);
852
- this.Message = opts.Message;
853
- }
854
- }
855
- export class InvalidEventDataStoreCategoryException extends __BaseException {
856
- constructor(opts) {
857
- super({
858
- name: "InvalidEventDataStoreCategoryException",
859
- $fault: "client",
860
- ...opts,
861
- });
862
- this.name = "InvalidEventDataStoreCategoryException";
863
- this.$fault = "client";
864
- Object.setPrototypeOf(this, InvalidEventDataStoreCategoryException.prototype);
865
- this.Message = opts.Message;
866
- }
867
- }
868
- export class InvalidImportSourceException extends __BaseException {
869
- constructor(opts) {
870
- super({
871
- name: "InvalidImportSourceException",
872
- $fault: "client",
873
- ...opts,
874
- });
875
- this.name = "InvalidImportSourceException";
876
- this.$fault = "client";
877
- Object.setPrototypeOf(this, InvalidImportSourceException.prototype);
878
- this.Message = opts.Message;
879
- }
880
- }
881
- export class InvalidQueryStatementException extends __BaseException {
882
- constructor(opts) {
883
- super({
884
- name: "InvalidQueryStatementException",
885
- $fault: "client",
886
- ...opts,
887
- });
888
- this.name = "InvalidQueryStatementException";
889
- this.$fault = "client";
890
- Object.setPrototypeOf(this, InvalidQueryStatementException.prototype);
891
- this.Message = opts.Message;
892
- }
893
- }
894
- export class MaxConcurrentQueriesException extends __BaseException {
895
- constructor(opts) {
896
- super({
897
- name: "MaxConcurrentQueriesException",
898
- $fault: "client",
899
- ...opts,
900
- });
901
- this.name = "MaxConcurrentQueriesException";
902
- this.$fault = "client";
903
- Object.setPrototypeOf(this, MaxConcurrentQueriesException.prototype);
904
- this.Message = opts.Message;
905
- }
906
- }
907
- export const TagFilterSensitiveLog = (obj) => ({
908
- ...obj,
909
- });
910
- export const AddTagsRequestFilterSensitiveLog = (obj) => ({
911
- ...obj,
912
- });
913
- export const AddTagsResponseFilterSensitiveLog = (obj) => ({
914
- ...obj,
915
- });
916
- export const AdvancedFieldSelectorFilterSensitiveLog = (obj) => ({
917
- ...obj,
918
- });
919
- export const AdvancedEventSelectorFilterSensitiveLog = (obj) => ({
920
- ...obj,
921
- });
922
- export const CancelQueryRequestFilterSensitiveLog = (obj) => ({
923
- ...obj,
924
- });
925
- export const CancelQueryResponseFilterSensitiveLog = (obj) => ({
926
- ...obj,
927
- });
928
- export const ChannelFilterSensitiveLog = (obj) => ({
929
- ...obj,
930
- });
931
- export const CreateEventDataStoreRequestFilterSensitiveLog = (obj) => ({
932
- ...obj,
933
- });
934
- export const CreateEventDataStoreResponseFilterSensitiveLog = (obj) => ({
935
- ...obj,
936
- });
937
- export const CreateTrailRequestFilterSensitiveLog = (obj) => ({
938
- ...obj,
939
- });
940
- export const CreateTrailResponseFilterSensitiveLog = (obj) => ({
941
- ...obj,
942
- });
943
- export const DeleteEventDataStoreRequestFilterSensitiveLog = (obj) => ({
944
- ...obj,
945
- });
946
- export const DeleteEventDataStoreResponseFilterSensitiveLog = (obj) => ({
947
- ...obj,
948
- });
949
- export const DeleteTrailRequestFilterSensitiveLog = (obj) => ({
950
- ...obj,
951
- });
952
- export const DeleteTrailResponseFilterSensitiveLog = (obj) => ({
953
- ...obj,
954
- });
955
- export const DescribeQueryRequestFilterSensitiveLog = (obj) => ({
956
- ...obj,
957
- });
958
- export const QueryStatisticsForDescribeQueryFilterSensitiveLog = (obj) => ({
959
- ...obj,
960
- });
961
- export const DescribeQueryResponseFilterSensitiveLog = (obj) => ({
962
- ...obj,
963
- });
964
- export const DescribeTrailsRequestFilterSensitiveLog = (obj) => ({
965
- ...obj,
966
- });
967
- export const TrailFilterSensitiveLog = (obj) => ({
968
- ...obj,
969
- });
970
- export const DescribeTrailsResponseFilterSensitiveLog = (obj) => ({
971
- ...obj,
972
- });
973
- export const GetChannelRequestFilterSensitiveLog = (obj) => ({
974
- ...obj,
975
- });
976
- export const DestinationFilterSensitiveLog = (obj) => ({
977
- ...obj,
978
- });
979
- export const SourceConfigFilterSensitiveLog = (obj) => ({
980
- ...obj,
981
- });
982
- export const GetChannelResponseFilterSensitiveLog = (obj) => ({
983
- ...obj,
984
- });
985
- export const GetEventDataStoreRequestFilterSensitiveLog = (obj) => ({
986
- ...obj,
987
- });
988
- export const GetEventDataStoreResponseFilterSensitiveLog = (obj) => ({
989
- ...obj,
990
- });
991
- export const GetEventSelectorsRequestFilterSensitiveLog = (obj) => ({
992
- ...obj,
993
- });
994
- export const DataResourceFilterSensitiveLog = (obj) => ({
995
- ...obj,
996
- });
997
- export const EventSelectorFilterSensitiveLog = (obj) => ({
998
- ...obj,
999
- });
1000
- export const GetEventSelectorsResponseFilterSensitiveLog = (obj) => ({
1001
- ...obj,
1002
- });
1003
- export const GetImportRequestFilterSensitiveLog = (obj) => ({
1004
- ...obj,
1005
- });
1006
- export const S3ImportSourceFilterSensitiveLog = (obj) => ({
1007
- ...obj,
1008
- });
1009
- export const ImportSourceFilterSensitiveLog = (obj) => ({
1010
- ...obj,
1011
- });
1012
- export const ImportStatisticsFilterSensitiveLog = (obj) => ({
1013
- ...obj,
1014
- });
1015
- export const GetImportResponseFilterSensitiveLog = (obj) => ({
1016
- ...obj,
1017
- });
1018
- export const GetInsightSelectorsRequestFilterSensitiveLog = (obj) => ({
1019
- ...obj,
1020
- });
1021
- export const InsightSelectorFilterSensitiveLog = (obj) => ({
1022
- ...obj,
1023
- });
1024
- export const GetInsightSelectorsResponseFilterSensitiveLog = (obj) => ({
1025
- ...obj,
1026
- });
1027
- export const GetQueryResultsRequestFilterSensitiveLog = (obj) => ({
1028
- ...obj,
1029
- });
1030
- export const QueryStatisticsFilterSensitiveLog = (obj) => ({
1031
- ...obj,
1032
- });
1033
- export const GetQueryResultsResponseFilterSensitiveLog = (obj) => ({
1034
- ...obj,
1035
- });
1036
- export const GetTrailRequestFilterSensitiveLog = (obj) => ({
1037
- ...obj,
1038
- });
1039
- export const GetTrailResponseFilterSensitiveLog = (obj) => ({
1040
- ...obj,
1041
- });
1042
- export const GetTrailStatusRequestFilterSensitiveLog = (obj) => ({
1043
- ...obj,
1044
- });
1045
- export const GetTrailStatusResponseFilterSensitiveLog = (obj) => ({
1046
- ...obj,
1047
- });
1048
- export const ListChannelsRequestFilterSensitiveLog = (obj) => ({
1049
- ...obj,
1050
- });
1051
- export const ListChannelsResponseFilterSensitiveLog = (obj) => ({
1052
- ...obj,
1053
- });
1054
- export const ListEventDataStoresRequestFilterSensitiveLog = (obj) => ({
1055
- ...obj,
1056
- });
1057
- export const EventDataStoreFilterSensitiveLog = (obj) => ({
1058
- ...obj,
1059
- });
1060
- export const ListEventDataStoresResponseFilterSensitiveLog = (obj) => ({
1061
- ...obj,
1062
- });
1063
- export const ListImportFailuresRequestFilterSensitiveLog = (obj) => ({
1064
- ...obj,
1065
- });
1066
- export const ImportFailureListItemFilterSensitiveLog = (obj) => ({
1067
- ...obj,
1068
- });
1069
- export const ListImportFailuresResponseFilterSensitiveLog = (obj) => ({
1070
- ...obj,
1071
- });
1072
- export const ListImportsRequestFilterSensitiveLog = (obj) => ({
1073
- ...obj,
1074
- });
1075
- export const ImportsListItemFilterSensitiveLog = (obj) => ({
1076
- ...obj,
1077
- });
1078
- export const ListImportsResponseFilterSensitiveLog = (obj) => ({
1079
- ...obj,
1080
- });
1081
- export const ListPublicKeysRequestFilterSensitiveLog = (obj) => ({
1082
- ...obj,
1083
- });
1084
- export const PublicKeyFilterSensitiveLog = (obj) => ({
1085
- ...obj,
1086
- });
1087
- export const ListPublicKeysResponseFilterSensitiveLog = (obj) => ({
1088
- ...obj,
1089
- });
1090
- export const ListQueriesRequestFilterSensitiveLog = (obj) => ({
1091
- ...obj,
1092
- });
1093
- export const QueryFilterSensitiveLog = (obj) => ({
1094
- ...obj,
1095
- });
1096
- export const ListQueriesResponseFilterSensitiveLog = (obj) => ({
1097
- ...obj,
1098
- });
1099
- export const ListTagsRequestFilterSensitiveLog = (obj) => ({
1100
- ...obj,
1101
- });
1102
- export const ResourceTagFilterSensitiveLog = (obj) => ({
1103
- ...obj,
1104
- });
1105
- export const ListTagsResponseFilterSensitiveLog = (obj) => ({
1106
- ...obj,
1107
- });
1108
- export const ListTrailsRequestFilterSensitiveLog = (obj) => ({
1109
- ...obj,
1110
- });
1111
- export const TrailInfoFilterSensitiveLog = (obj) => ({
1112
- ...obj,
1113
- });
1114
- export const ListTrailsResponseFilterSensitiveLog = (obj) => ({
1115
- ...obj,
1116
- });
1117
- export const LookupAttributeFilterSensitiveLog = (obj) => ({
1118
- ...obj,
1119
- });
1120
- export const LookupEventsRequestFilterSensitiveLog = (obj) => ({
1121
- ...obj,
1122
- });
1123
- export const ResourceFilterSensitiveLog = (obj) => ({
1124
- ...obj,
1125
- });
1126
- export const EventFilterSensitiveLog = (obj) => ({
1127
- ...obj,
1128
- });
1129
- export const LookupEventsResponseFilterSensitiveLog = (obj) => ({
1130
- ...obj,
1131
- });
1132
- export const PutEventSelectorsRequestFilterSensitiveLog = (obj) => ({
1133
- ...obj,
1134
- });
1135
- export const PutEventSelectorsResponseFilterSensitiveLog = (obj) => ({
1136
- ...obj,
1137
- });
1138
- export const PutInsightSelectorsRequestFilterSensitiveLog = (obj) => ({
1139
- ...obj,
1140
- });
1141
- export const PutInsightSelectorsResponseFilterSensitiveLog = (obj) => ({
1142
- ...obj,
1143
- });
1144
- export const RemoveTagsRequestFilterSensitiveLog = (obj) => ({
1145
- ...obj,
1146
- });
1147
- export const RemoveTagsResponseFilterSensitiveLog = (obj) => ({
1148
- ...obj,
1149
- });
1150
- export const RestoreEventDataStoreRequestFilterSensitiveLog = (obj) => ({
1151
- ...obj,
1152
- });
1153
- export const RestoreEventDataStoreResponseFilterSensitiveLog = (obj) => ({
1154
- ...obj,
1155
- });
1156
- export const StartImportRequestFilterSensitiveLog = (obj) => ({
1157
- ...obj,
1158
- });
1159
- export const StartImportResponseFilterSensitiveLog = (obj) => ({
1160
- ...obj,
1161
- });
1162
- export const StartLoggingRequestFilterSensitiveLog = (obj) => ({
1163
- ...obj,
1164
- });
1165
- export const StartLoggingResponseFilterSensitiveLog = (obj) => ({
1166
- ...obj,
1167
- });
1168
- export const StartQueryRequestFilterSensitiveLog = (obj) => ({
1169
- ...obj,
1170
- });
1171
- export const StartQueryResponseFilterSensitiveLog = (obj) => ({
1172
- ...obj,
1173
- });
1174
- export const StopImportRequestFilterSensitiveLog = (obj) => ({
1175
- ...obj,
1176
- });
1177
- export const StopImportResponseFilterSensitiveLog = (obj) => ({
1178
- ...obj,
1179
- });
1180
- export const StopLoggingRequestFilterSensitiveLog = (obj) => ({
1181
- ...obj,
1182
- });
1183
- export const StopLoggingResponseFilterSensitiveLog = (obj) => ({
1184
- ...obj,
1185
- });
1186
- export const UpdateEventDataStoreRequestFilterSensitiveLog = (obj) => ({
1187
- ...obj,
1188
- });
1189
- export const UpdateEventDataStoreResponseFilterSensitiveLog = (obj) => ({
1190
- ...obj,
1191
- });
1192
- export const UpdateTrailRequestFilterSensitiveLog = (obj) => ({
1193
- ...obj,
1194
- });
1195
- export const UpdateTrailResponseFilterSensitiveLog = (obj) => ({
1196
- ...obj,
1197
- });
817
+ var InvalidEventSelectorsException = (function (_super) {
818
+ __extends(InvalidEventSelectorsException, _super);
819
+ function InvalidEventSelectorsException(opts) {
820
+ var _this = _super.call(this, __assign({ name: "InvalidEventSelectorsException", $fault: "client" }, opts)) || this;
821
+ _this.name = "InvalidEventSelectorsException";
822
+ _this.$fault = "client";
823
+ Object.setPrototypeOf(_this, InvalidEventSelectorsException.prototype);
824
+ _this.Message = opts.Message;
825
+ return _this;
826
+ }
827
+ return InvalidEventSelectorsException;
828
+ }(__BaseException));
829
+ export { InvalidEventSelectorsException };
830
+ var InvalidInsightSelectorsException = (function (_super) {
831
+ __extends(InvalidInsightSelectorsException, _super);
832
+ function InvalidInsightSelectorsException(opts) {
833
+ var _this = _super.call(this, __assign({ name: "InvalidInsightSelectorsException", $fault: "client" }, opts)) || this;
834
+ _this.name = "InvalidInsightSelectorsException";
835
+ _this.$fault = "client";
836
+ Object.setPrototypeOf(_this, InvalidInsightSelectorsException.prototype);
837
+ _this.Message = opts.Message;
838
+ return _this;
839
+ }
840
+ return InvalidInsightSelectorsException;
841
+ }(__BaseException));
842
+ export { InvalidInsightSelectorsException };
843
+ var InvalidEventDataStoreStatusException = (function (_super) {
844
+ __extends(InvalidEventDataStoreStatusException, _super);
845
+ function InvalidEventDataStoreStatusException(opts) {
846
+ var _this = _super.call(this, __assign({ name: "InvalidEventDataStoreStatusException", $fault: "client" }, opts)) || this;
847
+ _this.name = "InvalidEventDataStoreStatusException";
848
+ _this.$fault = "client";
849
+ Object.setPrototypeOf(_this, InvalidEventDataStoreStatusException.prototype);
850
+ _this.Message = opts.Message;
851
+ return _this;
852
+ }
853
+ return InvalidEventDataStoreStatusException;
854
+ }(__BaseException));
855
+ export { InvalidEventDataStoreStatusException };
856
+ var InvalidEventDataStoreCategoryException = (function (_super) {
857
+ __extends(InvalidEventDataStoreCategoryException, _super);
858
+ function InvalidEventDataStoreCategoryException(opts) {
859
+ var _this = _super.call(this, __assign({ name: "InvalidEventDataStoreCategoryException", $fault: "client" }, opts)) || this;
860
+ _this.name = "InvalidEventDataStoreCategoryException";
861
+ _this.$fault = "client";
862
+ Object.setPrototypeOf(_this, InvalidEventDataStoreCategoryException.prototype);
863
+ _this.Message = opts.Message;
864
+ return _this;
865
+ }
866
+ return InvalidEventDataStoreCategoryException;
867
+ }(__BaseException));
868
+ export { InvalidEventDataStoreCategoryException };
869
+ var InvalidImportSourceException = (function (_super) {
870
+ __extends(InvalidImportSourceException, _super);
871
+ function InvalidImportSourceException(opts) {
872
+ var _this = _super.call(this, __assign({ name: "InvalidImportSourceException", $fault: "client" }, opts)) || this;
873
+ _this.name = "InvalidImportSourceException";
874
+ _this.$fault = "client";
875
+ Object.setPrototypeOf(_this, InvalidImportSourceException.prototype);
876
+ _this.Message = opts.Message;
877
+ return _this;
878
+ }
879
+ return InvalidImportSourceException;
880
+ }(__BaseException));
881
+ export { InvalidImportSourceException };
882
+ var InvalidQueryStatementException = (function (_super) {
883
+ __extends(InvalidQueryStatementException, _super);
884
+ function InvalidQueryStatementException(opts) {
885
+ var _this = _super.call(this, __assign({ name: "InvalidQueryStatementException", $fault: "client" }, opts)) || this;
886
+ _this.name = "InvalidQueryStatementException";
887
+ _this.$fault = "client";
888
+ Object.setPrototypeOf(_this, InvalidQueryStatementException.prototype);
889
+ _this.Message = opts.Message;
890
+ return _this;
891
+ }
892
+ return InvalidQueryStatementException;
893
+ }(__BaseException));
894
+ export { InvalidQueryStatementException };
895
+ var MaxConcurrentQueriesException = (function (_super) {
896
+ __extends(MaxConcurrentQueriesException, _super);
897
+ function MaxConcurrentQueriesException(opts) {
898
+ var _this = _super.call(this, __assign({ name: "MaxConcurrentQueriesException", $fault: "client" }, opts)) || this;
899
+ _this.name = "MaxConcurrentQueriesException";
900
+ _this.$fault = "client";
901
+ Object.setPrototypeOf(_this, MaxConcurrentQueriesException.prototype);
902
+ _this.Message = opts.Message;
903
+ return _this;
904
+ }
905
+ return MaxConcurrentQueriesException;
906
+ }(__BaseException));
907
+ export { MaxConcurrentQueriesException };
908
+ export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
909
+ export var AddTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
910
+ export var AddTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
911
+ export var AdvancedFieldSelectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
912
+ export var AdvancedEventSelectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
913
+ export var CancelQueryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
914
+ export var CancelQueryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
915
+ export var ChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
916
+ export var CreateEventDataStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
917
+ export var CreateEventDataStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
918
+ export var CreateTrailRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
919
+ export var CreateTrailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
920
+ export var DeleteEventDataStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
921
+ export var DeleteEventDataStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
922
+ export var DeleteTrailRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
923
+ export var DeleteTrailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
924
+ export var DescribeQueryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
925
+ export var QueryStatisticsForDescribeQueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
926
+ export var DescribeQueryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
927
+ export var DescribeTrailsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
928
+ export var TrailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
929
+ export var DescribeTrailsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
930
+ export var GetChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
931
+ export var DestinationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
932
+ export var SourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
933
+ export var GetChannelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
934
+ export var GetEventDataStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
935
+ export var GetEventDataStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
936
+ export var GetEventSelectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
937
+ export var DataResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
938
+ export var EventSelectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
939
+ export var GetEventSelectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
940
+ export var GetImportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
941
+ export var S3ImportSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
942
+ export var ImportSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
943
+ export var ImportStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
944
+ export var GetImportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
945
+ export var GetInsightSelectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
946
+ export var InsightSelectorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
947
+ export var GetInsightSelectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
948
+ export var GetQueryResultsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
949
+ export var QueryStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
950
+ export var GetQueryResultsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
951
+ export var GetTrailRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
952
+ export var GetTrailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
953
+ export var GetTrailStatusRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
954
+ export var GetTrailStatusResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
955
+ export var ListChannelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
956
+ export var ListChannelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
957
+ export var ListEventDataStoresRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
958
+ export var EventDataStoreFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
959
+ export var ListEventDataStoresResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
960
+ export var ListImportFailuresRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
961
+ export var ImportFailureListItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
962
+ export var ListImportFailuresResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
963
+ export var ListImportsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
964
+ export var ImportsListItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
965
+ export var ListImportsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
966
+ export var ListPublicKeysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
967
+ export var PublicKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
968
+ export var ListPublicKeysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
969
+ export var ListQueriesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
970
+ export var QueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
971
+ export var ListQueriesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
972
+ export var ListTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
973
+ export var ResourceTagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
974
+ export var ListTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
975
+ export var ListTrailsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
976
+ export var TrailInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
977
+ export var ListTrailsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
978
+ export var LookupAttributeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
979
+ export var LookupEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
980
+ export var ResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
981
+ export var EventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
982
+ export var LookupEventsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
983
+ export var PutEventSelectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
984
+ export var PutEventSelectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
985
+ export var PutInsightSelectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
986
+ export var PutInsightSelectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
987
+ export var RemoveTagsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
988
+ export var RemoveTagsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
989
+ export var RestoreEventDataStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
990
+ export var RestoreEventDataStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
991
+ export var StartImportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
992
+ export var StartImportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
993
+ export var StartLoggingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
994
+ export var StartLoggingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
995
+ export var StartQueryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
996
+ export var StartQueryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
997
+ export var StopImportRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
998
+ export var StopImportResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
999
+ export var StopLoggingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1000
+ export var StopLoggingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1001
+ export var UpdateEventDataStoreRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1002
+ export var UpdateEventDataStoreResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1003
+ export var UpdateTrailRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1004
+ export var UpdateTrailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };