@aws-sdk/client-cloudwatch-logs 3.987.0 → 3.989.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +126 -3761
- package/dist-cjs/models/CloudWatchLogsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +285 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +3000 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +138 -132
- package/dist-types/schemas/schemas_0.d.ts +28 -21
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +23 -21
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -16,6 +16,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
16
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
17
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
18
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
19
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
20
|
+
var errors = require('./models/errors');
|
|
21
|
+
var CloudWatchLogsServiceException = require('./models/CloudWatchLogsServiceException');
|
|
19
22
|
|
|
20
23
|
const resolveClientEndpointParameters = (options) => {
|
|
21
24
|
return Object.assign(options, {
|
|
@@ -112,3215 +115,6 @@ class CloudWatchLogsClient extends smithyClient.Client {
|
|
|
112
115
|
}
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
class CloudWatchLogsServiceException extends smithyClient.ServiceException {
|
|
116
|
-
constructor(options) {
|
|
117
|
-
super(options);
|
|
118
|
-
Object.setPrototypeOf(this, CloudWatchLogsServiceException.prototype);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
class AccessDeniedException extends CloudWatchLogsServiceException {
|
|
123
|
-
name = "AccessDeniedException";
|
|
124
|
-
$fault = "client";
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "AccessDeniedException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InvalidParameterException extends CloudWatchLogsServiceException {
|
|
135
|
-
name = "InvalidParameterException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InvalidParameterException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class OperationAbortedException extends CloudWatchLogsServiceException {
|
|
147
|
-
name = "OperationAbortedException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "OperationAbortedException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, OperationAbortedException.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class ResourceNotFoundException extends CloudWatchLogsServiceException {
|
|
159
|
-
name = "ResourceNotFoundException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "ResourceNotFoundException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ServiceUnavailableException extends CloudWatchLogsServiceException {
|
|
171
|
-
name = "ServiceUnavailableException";
|
|
172
|
-
$fault = "server";
|
|
173
|
-
constructor(opts) {
|
|
174
|
-
super({
|
|
175
|
-
name: "ServiceUnavailableException",
|
|
176
|
-
$fault: "server",
|
|
177
|
-
...opts,
|
|
178
|
-
});
|
|
179
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class InternalServerException extends CloudWatchLogsServiceException {
|
|
183
|
-
name = "InternalServerException";
|
|
184
|
-
$fault = "server";
|
|
185
|
-
constructor(opts) {
|
|
186
|
-
super({
|
|
187
|
-
name: "InternalServerException",
|
|
188
|
-
$fault: "server",
|
|
189
|
-
...opts,
|
|
190
|
-
});
|
|
191
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
class ThrottlingException extends CloudWatchLogsServiceException {
|
|
195
|
-
name = "ThrottlingException";
|
|
196
|
-
$fault = "client";
|
|
197
|
-
constructor(opts) {
|
|
198
|
-
super({
|
|
199
|
-
name: "ThrottlingException",
|
|
200
|
-
$fault: "client",
|
|
201
|
-
...opts,
|
|
202
|
-
});
|
|
203
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
class ValidationException extends CloudWatchLogsServiceException {
|
|
207
|
-
name = "ValidationException";
|
|
208
|
-
$fault = "client";
|
|
209
|
-
constructor(opts) {
|
|
210
|
-
super({
|
|
211
|
-
name: "ValidationException",
|
|
212
|
-
$fault: "client",
|
|
213
|
-
...opts,
|
|
214
|
-
});
|
|
215
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class InvalidOperationException extends CloudWatchLogsServiceException {
|
|
219
|
-
name = "InvalidOperationException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
constructor(opts) {
|
|
222
|
-
super({
|
|
223
|
-
name: "InvalidOperationException",
|
|
224
|
-
$fault: "client",
|
|
225
|
-
...opts,
|
|
226
|
-
});
|
|
227
|
-
Object.setPrototypeOf(this, InvalidOperationException.prototype);
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
class ConflictException extends CloudWatchLogsServiceException {
|
|
231
|
-
name = "ConflictException";
|
|
232
|
-
$fault = "client";
|
|
233
|
-
constructor(opts) {
|
|
234
|
-
super({
|
|
235
|
-
name: "ConflictException",
|
|
236
|
-
$fault: "client",
|
|
237
|
-
...opts,
|
|
238
|
-
});
|
|
239
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
class ServiceQuotaExceededException extends CloudWatchLogsServiceException {
|
|
243
|
-
name = "ServiceQuotaExceededException";
|
|
244
|
-
$fault = "client";
|
|
245
|
-
constructor(opts) {
|
|
246
|
-
super({
|
|
247
|
-
name: "ServiceQuotaExceededException",
|
|
248
|
-
$fault: "client",
|
|
249
|
-
...opts,
|
|
250
|
-
});
|
|
251
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
class LimitExceededException extends CloudWatchLogsServiceException {
|
|
255
|
-
name = "LimitExceededException";
|
|
256
|
-
$fault = "client";
|
|
257
|
-
constructor(opts) {
|
|
258
|
-
super({
|
|
259
|
-
name: "LimitExceededException",
|
|
260
|
-
$fault: "client",
|
|
261
|
-
...opts,
|
|
262
|
-
});
|
|
263
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
class ResourceAlreadyExistsException extends CloudWatchLogsServiceException {
|
|
267
|
-
name = "ResourceAlreadyExistsException";
|
|
268
|
-
$fault = "client";
|
|
269
|
-
constructor(opts) {
|
|
270
|
-
super({
|
|
271
|
-
name: "ResourceAlreadyExistsException",
|
|
272
|
-
$fault: "client",
|
|
273
|
-
...opts,
|
|
274
|
-
});
|
|
275
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
class DataAlreadyAcceptedException extends CloudWatchLogsServiceException {
|
|
279
|
-
name = "DataAlreadyAcceptedException";
|
|
280
|
-
$fault = "client";
|
|
281
|
-
expectedSequenceToken;
|
|
282
|
-
constructor(opts) {
|
|
283
|
-
super({
|
|
284
|
-
name: "DataAlreadyAcceptedException",
|
|
285
|
-
$fault: "client",
|
|
286
|
-
...opts,
|
|
287
|
-
});
|
|
288
|
-
Object.setPrototypeOf(this, DataAlreadyAcceptedException.prototype);
|
|
289
|
-
this.expectedSequenceToken = opts.expectedSequenceToken;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
class InternalStreamingException extends CloudWatchLogsServiceException {
|
|
293
|
-
name = "InternalStreamingException";
|
|
294
|
-
$fault = "client";
|
|
295
|
-
constructor(opts) {
|
|
296
|
-
super({
|
|
297
|
-
name: "InternalStreamingException",
|
|
298
|
-
$fault: "client",
|
|
299
|
-
...opts,
|
|
300
|
-
});
|
|
301
|
-
Object.setPrototypeOf(this, InternalStreamingException.prototype);
|
|
302
|
-
}
|
|
303
|
-
}
|
|
304
|
-
class InvalidSequenceTokenException extends CloudWatchLogsServiceException {
|
|
305
|
-
name = "InvalidSequenceTokenException";
|
|
306
|
-
$fault = "client";
|
|
307
|
-
expectedSequenceToken;
|
|
308
|
-
constructor(opts) {
|
|
309
|
-
super({
|
|
310
|
-
name: "InvalidSequenceTokenException",
|
|
311
|
-
$fault: "client",
|
|
312
|
-
...opts,
|
|
313
|
-
});
|
|
314
|
-
Object.setPrototypeOf(this, InvalidSequenceTokenException.prototype);
|
|
315
|
-
this.expectedSequenceToken = opts.expectedSequenceToken;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
|
-
class UnrecognizedClientException extends CloudWatchLogsServiceException {
|
|
319
|
-
name = "UnrecognizedClientException";
|
|
320
|
-
$fault = "client";
|
|
321
|
-
constructor(opts) {
|
|
322
|
-
super({
|
|
323
|
-
name: "UnrecognizedClientException",
|
|
324
|
-
$fault: "client",
|
|
325
|
-
...opts,
|
|
326
|
-
});
|
|
327
|
-
Object.setPrototypeOf(this, UnrecognizedClientException.prototype);
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
class SessionStreamingException extends CloudWatchLogsServiceException {
|
|
331
|
-
name = "SessionStreamingException";
|
|
332
|
-
$fault = "client";
|
|
333
|
-
constructor(opts) {
|
|
334
|
-
super({
|
|
335
|
-
name: "SessionStreamingException",
|
|
336
|
-
$fault: "client",
|
|
337
|
-
...opts,
|
|
338
|
-
});
|
|
339
|
-
Object.setPrototypeOf(this, SessionStreamingException.prototype);
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
class SessionTimeoutException extends CloudWatchLogsServiceException {
|
|
343
|
-
name = "SessionTimeoutException";
|
|
344
|
-
$fault = "client";
|
|
345
|
-
constructor(opts) {
|
|
346
|
-
super({
|
|
347
|
-
name: "SessionTimeoutException",
|
|
348
|
-
$fault: "client",
|
|
349
|
-
...opts,
|
|
350
|
-
});
|
|
351
|
-
Object.setPrototypeOf(this, SessionTimeoutException.prototype);
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
class MalformedQueryException extends CloudWatchLogsServiceException {
|
|
355
|
-
name = "MalformedQueryException";
|
|
356
|
-
$fault = "client";
|
|
357
|
-
queryCompileError;
|
|
358
|
-
constructor(opts) {
|
|
359
|
-
super({
|
|
360
|
-
name: "MalformedQueryException",
|
|
361
|
-
$fault: "client",
|
|
362
|
-
...opts,
|
|
363
|
-
});
|
|
364
|
-
Object.setPrototypeOf(this, MalformedQueryException.prototype);
|
|
365
|
-
this.queryCompileError = opts.queryCompileError;
|
|
366
|
-
}
|
|
367
|
-
}
|
|
368
|
-
class TooManyTagsException extends CloudWatchLogsServiceException {
|
|
369
|
-
name = "TooManyTagsException";
|
|
370
|
-
$fault = "client";
|
|
371
|
-
resourceName;
|
|
372
|
-
constructor(opts) {
|
|
373
|
-
super({
|
|
374
|
-
name: "TooManyTagsException",
|
|
375
|
-
$fault: "client",
|
|
376
|
-
...opts,
|
|
377
|
-
});
|
|
378
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
379
|
-
this.resourceName = opts.resourceName;
|
|
380
|
-
}
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
const _A = "Anomaly";
|
|
384
|
-
const _AD = "AnomalyDetector";
|
|
385
|
-
const _ADE = "AccessDeniedException";
|
|
386
|
-
const _ADn = "AnomalyDetectors";
|
|
387
|
-
const _AF = "AllowedFields";
|
|
388
|
-
const _AK = "AddKeys";
|
|
389
|
-
const _AKE = "AddKeyEntry";
|
|
390
|
-
const _AKEd = "AddKeyEntries";
|
|
391
|
-
const _AKK = "AssociateKmsKey";
|
|
392
|
-
const _AKKR = "AssociateKmsKeyRequest";
|
|
393
|
-
const _ALGS = "AggregateLogGroupSummary";
|
|
394
|
-
const _ALGSg = "AggregateLogGroupSummaries";
|
|
395
|
-
const _AP = "AccountPolicy";
|
|
396
|
-
const _APc = "AccountPolicies";
|
|
397
|
-
const _ASTSTI = "AssociateSourceToS3TableIntegration";
|
|
398
|
-
const _ASTSTIR = "AssociateSourceToS3TableIntegrationRequest";
|
|
399
|
-
const _ASTSTIRs = "AssociateSourceToS3TableIntegrationResponse";
|
|
400
|
-
const _An = "Anomalies";
|
|
401
|
-
const _CD = "CreateDelivery";
|
|
402
|
-
const _CDR = "CreateDeliveryRequest";
|
|
403
|
-
const _CDRr = "CreateDeliveryResponse";
|
|
404
|
-
const _CE = "ConflictException";
|
|
405
|
-
const _CET = "CancelExportTask";
|
|
406
|
-
const _CETR = "CancelExportTaskRequest";
|
|
407
|
-
const _CETRr = "CreateExportTaskRequest";
|
|
408
|
-
const _CETRre = "CreateExportTaskResponse";
|
|
409
|
-
const _CETr = "CreateExportTask";
|
|
410
|
-
const _CIT = "CancelImportTask";
|
|
411
|
-
const _CITR = "CancelImportTaskRequest";
|
|
412
|
-
const _CITRa = "CancelImportTaskResponse";
|
|
413
|
-
const _CITRr = "CreateImportTaskRequest";
|
|
414
|
-
const _CITRre = "CreateImportTaskResponse";
|
|
415
|
-
const _CITr = "CreateImportTask";
|
|
416
|
-
const _CLAD = "CreateLogAnomalyDetector";
|
|
417
|
-
const _CLADR = "CreateLogAnomalyDetectorRequest";
|
|
418
|
-
const _CLADRr = "CreateLogAnomalyDetectorResponse";
|
|
419
|
-
const _CLG = "CreateLogGroup";
|
|
420
|
-
const _CLGR = "CreateLogGroupRequest";
|
|
421
|
-
const _CLS = "CreateLogStream";
|
|
422
|
-
const _CLSR = "CreateLogStreamRequest";
|
|
423
|
-
const _CSQ = "CreateScheduledQuery";
|
|
424
|
-
const _CSQR = "CreateScheduledQueryRequest";
|
|
425
|
-
const _CSQRr = "CreateScheduledQueryResponse";
|
|
426
|
-
const _CSV = "CSV";
|
|
427
|
-
const _CT = "ConfigurationTemplate";
|
|
428
|
-
const _CTDCV = "ConfigurationTemplateDeliveryConfigValues";
|
|
429
|
-
const _CTo = "ConfigurationTemplates";
|
|
430
|
-
const _CV = "CopyValue";
|
|
431
|
-
const _CVE = "CopyValueEntry";
|
|
432
|
-
const _CVEo = "CopyValueEntries";
|
|
433
|
-
const _D = "Delivery";
|
|
434
|
-
const _DAAE = "DataAlreadyAcceptedException";
|
|
435
|
-
const _DAP = "DeleteAccountPolicy";
|
|
436
|
-
const _DAPR = "DeleteAccountPolicyRequest";
|
|
437
|
-
const _DAPRe = "DescribeAccountPoliciesRequest";
|
|
438
|
-
const _DAPRes = "DescribeAccountPoliciesResponse";
|
|
439
|
-
const _DAPe = "DescribeAccountPolicies";
|
|
440
|
-
const _DC = "DestinationConfiguration";
|
|
441
|
-
const _DCT = "DescribeConfigurationTemplates";
|
|
442
|
-
const _DCTR = "DescribeConfigurationTemplatesRequest";
|
|
443
|
-
const _DCTRe = "DescribeConfigurationTemplatesResponse";
|
|
444
|
-
const _DD = "DeliveryDestination";
|
|
445
|
-
const _DDC = "DeliveryDestinationConfiguration";
|
|
446
|
-
const _DDD = "DeleteDeliveryDestination";
|
|
447
|
-
const _DDDP = "DeleteDeliveryDestinationPolicy";
|
|
448
|
-
const _DDDPR = "DeleteDeliveryDestinationPolicyRequest";
|
|
449
|
-
const _DDDR = "DeleteDeliveryDestinationRequest";
|
|
450
|
-
const _DDDRe = "DescribeDeliveryDestinationsRequest";
|
|
451
|
-
const _DDDRes = "DescribeDeliveryDestinationsResponse";
|
|
452
|
-
const _DDDe = "DescribeDeliveryDestinations";
|
|
453
|
-
const _DDPP = "DeleteDataProtectionPolicy";
|
|
454
|
-
const _DDPPR = "DeleteDataProtectionPolicyRequest";
|
|
455
|
-
const _DDR = "DeleteDeliveryRequest";
|
|
456
|
-
const _DDRe = "DeleteDestinationRequest";
|
|
457
|
-
const _DDRes = "DescribeDeliveriesRequest";
|
|
458
|
-
const _DDResc = "DescribeDeliveriesResponse";
|
|
459
|
-
const _DDRescr = "DescribeDestinationsRequest";
|
|
460
|
-
const _DDRescri = "DescribeDestinationsResponse";
|
|
461
|
-
const _DDS = "DeleteDeliverySource";
|
|
462
|
-
const _DDSR = "DeleteDeliverySourceRequest";
|
|
463
|
-
const _DDSRe = "DescribeDeliverySourcesRequest";
|
|
464
|
-
const _DDSRes = "DescribeDeliverySourcesResponse";
|
|
465
|
-
const _DDSe = "DescribeDeliverySources";
|
|
466
|
-
const _DDe = "DeliveryDestinations";
|
|
467
|
-
const _DDel = "DeleteDelivery";
|
|
468
|
-
const _DDele = "DeleteDestination";
|
|
469
|
-
const _DDes = "DescribeDeliveries";
|
|
470
|
-
const _DDesc = "DescribeDestinations";
|
|
471
|
-
const _DET = "DescribeExportTasks";
|
|
472
|
-
const _DETR = "DescribeExportTasksRequest";
|
|
473
|
-
const _DETRe = "DescribeExportTasksResponse";
|
|
474
|
-
const _DFI = "DescribeFieldIndexes";
|
|
475
|
-
const _DFIR = "DescribeFieldIndexesRequest";
|
|
476
|
-
const _DFIRe = "DescribeFieldIndexesResponse";
|
|
477
|
-
const _DI = "DeleteIntegration";
|
|
478
|
-
const _DIP = "DeleteIndexPolicy";
|
|
479
|
-
const _DIPR = "DeleteIndexPolicyRequest";
|
|
480
|
-
const _DIPRe = "DeleteIndexPolicyResponse";
|
|
481
|
-
const _DIPRes = "DescribeIndexPoliciesRequest";
|
|
482
|
-
const _DIPResc = "DescribeIndexPoliciesResponse";
|
|
483
|
-
const _DIPe = "DescribeIndexPolicies";
|
|
484
|
-
const _DIR = "DeleteIntegrationRequest";
|
|
485
|
-
const _DIRe = "DeleteIntegrationResponse";
|
|
486
|
-
const _DIT = "DescribeImportTasks";
|
|
487
|
-
const _DITB = "DescribeImportTaskBatches";
|
|
488
|
-
const _DITBR = "DescribeImportTaskBatchesRequest";
|
|
489
|
-
const _DITBRe = "DescribeImportTaskBatchesResponse";
|
|
490
|
-
const _DITR = "DescribeImportTasksRequest";
|
|
491
|
-
const _DITRe = "DescribeImportTasksResponse";
|
|
492
|
-
const _DK = "DeleteKeys";
|
|
493
|
-
const _DKK = "DisassociateKmsKey";
|
|
494
|
-
const _DKKR = "DisassociateKmsKeyRequest";
|
|
495
|
-
const _DLAD = "DeleteLogAnomalyDetector";
|
|
496
|
-
const _DLADR = "DeleteLogAnomalyDetectorRequest";
|
|
497
|
-
const _DLG = "DeleteLogGroup";
|
|
498
|
-
const _DLGR = "DeleteLogGroupRequest";
|
|
499
|
-
const _DLGRe = "DescribeLogGroupsRequest";
|
|
500
|
-
const _DLGRes = "DescribeLogGroupsResponse";
|
|
501
|
-
const _DLGe = "DescribeLogGroups";
|
|
502
|
-
const _DLS = "DeleteLogStream";
|
|
503
|
-
const _DLSR = "DeleteLogStreamRequest";
|
|
504
|
-
const _DLSRe = "DescribeLogStreamsRequest";
|
|
505
|
-
const _DLSRes = "DescribeLogStreamsResponse";
|
|
506
|
-
const _DLSe = "DescribeLogStreams";
|
|
507
|
-
const _DMF = "DeleteMetricFilter";
|
|
508
|
-
const _DMFR = "DeleteMetricFilterRequest";
|
|
509
|
-
const _DMFRe = "DescribeMetricFiltersRequest";
|
|
510
|
-
const _DMFRes = "DescribeMetricFiltersResponse";
|
|
511
|
-
const _DMFe = "DescribeMetricFilters";
|
|
512
|
-
const _DNP = "DestinationNamePrefix";
|
|
513
|
-
const _DQ = "DescribeQueries";
|
|
514
|
-
const _DQD = "DeleteQueryDefinition";
|
|
515
|
-
const _DQDR = "DeleteQueryDefinitionRequest";
|
|
516
|
-
const _DQDRe = "DeleteQueryDefinitionResponse";
|
|
517
|
-
const _DQDRes = "DescribeQueryDefinitionsRequest";
|
|
518
|
-
const _DQDResc = "DescribeQueryDefinitionsResponse";
|
|
519
|
-
const _DQDe = "DescribeQueryDefinitions";
|
|
520
|
-
const _DQR = "DescribeQueriesRequest";
|
|
521
|
-
const _DQRe = "DescribeQueriesResponse";
|
|
522
|
-
const _DRP = "DeleteResourcePolicy";
|
|
523
|
-
const _DRPR = "DeleteResourcePolicyRequest";
|
|
524
|
-
const _DRPRe = "DeleteRetentionPolicyRequest";
|
|
525
|
-
const _DRPRes = "DescribeResourcePoliciesRequest";
|
|
526
|
-
const _DRPResc = "DescribeResourcePoliciesResponse";
|
|
527
|
-
const _DRPe = "DeleteRetentionPolicy";
|
|
528
|
-
const _DRPes = "DescribeResourcePolicies";
|
|
529
|
-
const _DS = "DataSource";
|
|
530
|
-
const _DSF = "DataSourceFilter";
|
|
531
|
-
const _DSFR = "DeleteSubscriptionFilterRequest";
|
|
532
|
-
const _DSFRe = "DescribeSubscriptionFiltersRequest";
|
|
533
|
-
const _DSFRes = "DescribeSubscriptionFiltersResponse";
|
|
534
|
-
const _DSFSTI = "DisassociateSourceFromS3TableIntegration";
|
|
535
|
-
const _DSFSTIR = "DisassociateSourceFromS3TableIntegrationRequest";
|
|
536
|
-
const _DSFSTIRi = "DisassociateSourceFromS3TableIntegrationResponse";
|
|
537
|
-
const _DSFa = "DataSourceFilters";
|
|
538
|
-
const _DSFe = "DeleteSubscriptionFilter";
|
|
539
|
-
const _DSFes = "DescribeSubscriptionFilters";
|
|
540
|
-
const _DSQ = "DeleteScheduledQuery";
|
|
541
|
-
const _DSQR = "DeleteScheduledQueryRequest";
|
|
542
|
-
const _DSQRe = "DeleteScheduledQueryResponse";
|
|
543
|
-
const _DSe = "DeliverySource";
|
|
544
|
-
const _DSel = "DeliverySources";
|
|
545
|
-
const _DT = "DeleteTransformer";
|
|
546
|
-
const _DTC = "DateTimeConverter";
|
|
547
|
-
const _DTR = "DeleteTransformerRequest";
|
|
548
|
-
const _De = "Destination";
|
|
549
|
-
const _Del = "Deliveries";
|
|
550
|
-
const _Des = "Destinations";
|
|
551
|
-
const _E = "Entity";
|
|
552
|
-
const _ET = "ExportTask";
|
|
553
|
-
const _ETEI = "ExportTaskExecutionInfo";
|
|
554
|
-
const _ETS = "ExportTaskStatus";
|
|
555
|
-
const _ETx = "ExportTasks";
|
|
556
|
-
const _FD = "FieldsData";
|
|
557
|
-
const _FI = "FieldIndex";
|
|
558
|
-
const _FIi = "FieldIndexes";
|
|
559
|
-
const _FLE = "FilteredLogEvent";
|
|
560
|
-
const _FLER = "FilterLogEventsRequest";
|
|
561
|
-
const _FLERi = "FilterLogEventsResponse";
|
|
562
|
-
const _FLEi = "FilteredLogEvents";
|
|
563
|
-
const _FLEil = "FilterLogEvents";
|
|
564
|
-
const _G = "Grok";
|
|
565
|
-
const _GD = "GetDelivery";
|
|
566
|
-
const _GDD = "GetDeliveryDestination";
|
|
567
|
-
const _GDDP = "GetDeliveryDestinationPolicy";
|
|
568
|
-
const _GDDPR = "GetDeliveryDestinationPolicyRequest";
|
|
569
|
-
const _GDDPRe = "GetDeliveryDestinationPolicyResponse";
|
|
570
|
-
const _GDDR = "GetDeliveryDestinationRequest";
|
|
571
|
-
const _GDDRe = "GetDeliveryDestinationResponse";
|
|
572
|
-
const _GDPP = "GetDataProtectionPolicy";
|
|
573
|
-
const _GDPPR = "GetDataProtectionPolicyRequest";
|
|
574
|
-
const _GDPPRe = "GetDataProtectionPolicyResponse";
|
|
575
|
-
const _GDR = "GetDeliveryRequest";
|
|
576
|
-
const _GDRe = "GetDeliveryResponse";
|
|
577
|
-
const _GDS = "GetDeliverySource";
|
|
578
|
-
const _GDSR = "GetDeliverySourceRequest";
|
|
579
|
-
const _GDSRe = "GetDeliverySourceResponse";
|
|
580
|
-
const _GI = "GroupingIdentifier";
|
|
581
|
-
const _GIR = "GetIntegrationRequest";
|
|
582
|
-
const _GIRe = "GetIntegrationResponse";
|
|
583
|
-
const _GIe = "GetIntegration";
|
|
584
|
-
const _GIr = "GroupingIdentifiers";
|
|
585
|
-
const _GLAD = "GetLogAnomalyDetector";
|
|
586
|
-
const _GLADR = "GetLogAnomalyDetectorRequest";
|
|
587
|
-
const _GLADRe = "GetLogAnomalyDetectorResponse";
|
|
588
|
-
const _GLE = "GetLogEvents";
|
|
589
|
-
const _GLER = "GetLogEventsRequest";
|
|
590
|
-
const _GLERe = "GetLogEventsResponse";
|
|
591
|
-
const _GLF = "GetLogFields";
|
|
592
|
-
const _GLFR = "GetLogFieldsRequest";
|
|
593
|
-
const _GLFRe = "GetLogFieldsResponse";
|
|
594
|
-
const _GLGF = "GetLogGroupFields";
|
|
595
|
-
const _GLGFR = "GetLogGroupFieldsRequest";
|
|
596
|
-
const _GLGFRe = "GetLogGroupFieldsResponse";
|
|
597
|
-
const _GLO = "GetLogObject";
|
|
598
|
-
const _GLOR = "GetLogObjectRequest";
|
|
599
|
-
const _GLORS = "GetLogObjectResponseStream";
|
|
600
|
-
const _GLORe = "GetLogObjectResponse";
|
|
601
|
-
const _GLR = "GetLogRecord";
|
|
602
|
-
const _GLRR = "GetLogRecordRequest";
|
|
603
|
-
const _GLRRe = "GetLogRecordResponse";
|
|
604
|
-
const _GQR = "GetQueryResults";
|
|
605
|
-
const _GQRR = "GetQueryResultsRequest";
|
|
606
|
-
const _GQRRe = "GetQueryResultsResponse";
|
|
607
|
-
const _GSQ = "GetScheduledQuery";
|
|
608
|
-
const _GSQH = "GetScheduledQueryHistory";
|
|
609
|
-
const _GSQHR = "GetScheduledQueryHistoryRequest";
|
|
610
|
-
const _GSQHRe = "GetScheduledQueryHistoryResponse";
|
|
611
|
-
const _GSQR = "GetScheduledQueryRequest";
|
|
612
|
-
const _GSQRe = "GetScheduledQueryResponse";
|
|
613
|
-
const _GT = "GetTransformer";
|
|
614
|
-
const _GTR = "GetTransformerRequest";
|
|
615
|
-
const _GTRe = "GetTransformerResponse";
|
|
616
|
-
const _I = "Import";
|
|
617
|
-
const _IB = "ImportBatch";
|
|
618
|
-
const _IBL = "ImportBatchList";
|
|
619
|
-
const _ID = "IntegrationDetails";
|
|
620
|
-
const _IF = "ImportFilter";
|
|
621
|
-
const _IL = "ImportList";
|
|
622
|
-
const _ILE = "InputLogEvent";
|
|
623
|
-
const _ILEn = "InputLogEvents";
|
|
624
|
-
const _IOE = "InvalidOperationException";
|
|
625
|
-
const _IP = "IndexPolicy";
|
|
626
|
-
const _IPE = "InvalidParameterException";
|
|
627
|
-
const _IPn = "IndexPolicies";
|
|
628
|
-
const _IS = "ImportStatistics";
|
|
629
|
-
const _ISE = "InternalServerException";
|
|
630
|
-
const _ISEn = "InternalStreamingException";
|
|
631
|
-
const _ISTE = "InvalidSequenceTokenException";
|
|
632
|
-
const _ISn = "IntegrationSummary";
|
|
633
|
-
const _ISnt = "IntegrationSummaries";
|
|
634
|
-
const _LA = "ListAnomalies";
|
|
635
|
-
const _LALGS = "ListAggregateLogGroupSummaries";
|
|
636
|
-
const _LALGSR = "ListAggregateLogGroupSummariesRequest";
|
|
637
|
-
const _LALGSRi = "ListAggregateLogGroupSummariesResponse";
|
|
638
|
-
const _LAR = "ListAnomaliesRequest";
|
|
639
|
-
const _LARi = "ListAnomaliesResponse";
|
|
640
|
-
const _LCS = "LowerCaseString";
|
|
641
|
-
const _LE = "LogEvent";
|
|
642
|
-
const _LEE = "LimitExceededException";
|
|
643
|
-
const _LFL = "LogFieldsList";
|
|
644
|
-
const _LFLI = "LogFieldsListItem";
|
|
645
|
-
const _LFT = "LogFieldType";
|
|
646
|
-
const _LG = "LogGroup";
|
|
647
|
-
const _LGF = "LogGroupField";
|
|
648
|
-
const _LGFL = "LogGroupFieldList";
|
|
649
|
-
const _LGS = "LogGroupSummary";
|
|
650
|
-
const _LGSo = "LogGroupSummaries";
|
|
651
|
-
const _LGo = "LogGroups";
|
|
652
|
-
const _LI = "ListIntegrations";
|
|
653
|
-
const _LIR = "ListIntegrationsRequest";
|
|
654
|
-
const _LIRi = "ListIntegrationsResponse";
|
|
655
|
-
const _LLAD = "ListLogAnomalyDetectors";
|
|
656
|
-
const _LLADR = "ListLogAnomalyDetectorsRequest";
|
|
657
|
-
const _LLADRi = "ListLogAnomalyDetectorsResponse";
|
|
658
|
-
const _LLG = "ListLogGroups";
|
|
659
|
-
const _LLGFQ = "ListLogGroupsForQuery";
|
|
660
|
-
const _LLGFQR = "ListLogGroupsForQueryRequest";
|
|
661
|
-
const _LLGFQRi = "ListLogGroupsForQueryResponse";
|
|
662
|
-
const _LLGR = "ListLogGroupsRequest";
|
|
663
|
-
const _LLGRi = "ListLogGroupsResponse";
|
|
664
|
-
const _LS = "LogStream";
|
|
665
|
-
const _LSFSTI = "ListSourcesForS3TableIntegration";
|
|
666
|
-
const _LSFSTIR = "ListSourcesForS3TableIntegrationRequest";
|
|
667
|
-
const _LSFSTIRi = "ListSourcesForS3TableIntegrationResponse";
|
|
668
|
-
const _LSQ = "ListScheduledQueries";
|
|
669
|
-
const _LSQR = "ListScheduledQueriesRequest";
|
|
670
|
-
const _LSQRi = "ListScheduledQueriesResponse";
|
|
671
|
-
const _LSo = "LogSamples";
|
|
672
|
-
const _LSog = "LogStreams";
|
|
673
|
-
const _LTFR = "ListTagsForResource";
|
|
674
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
675
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
676
|
-
const _LTLG = "ListTagsLogGroup";
|
|
677
|
-
const _LTLGR = "ListTagsLogGroupRequest";
|
|
678
|
-
const _LTLGRi = "ListTagsLogGroupResponse";
|
|
679
|
-
const _LTM = "ListToMap";
|
|
680
|
-
const _LTSLE = "LiveTailSessionLogEvent";
|
|
681
|
-
const _LTSM = "LiveTailSessionMetadata";
|
|
682
|
-
const _LTSR = "LiveTailSessionResults";
|
|
683
|
-
const _LTSS = "LiveTailSessionStart";
|
|
684
|
-
const _LTSU = "LiveTailSessionUpdate";
|
|
685
|
-
const _MF = "MetricFilter";
|
|
686
|
-
const _MFM = "MetricFilterMatches";
|
|
687
|
-
const _MFMR = "MetricFilterMatchRecord";
|
|
688
|
-
const _MFe = "MetricFilters";
|
|
689
|
-
const _MK = "MoveKeys";
|
|
690
|
-
const _MKE = "MoveKeyEntry";
|
|
691
|
-
const _MKEo = "MoveKeyEntries";
|
|
692
|
-
const _MQE = "MalformedQueryException";
|
|
693
|
-
const _MT = "MetricTransformation";
|
|
694
|
-
const _MTe = "MetricTransformations";
|
|
695
|
-
const _OAE = "OperationAbortedException";
|
|
696
|
-
const _OLE = "OutputLogEvent";
|
|
697
|
-
const _OLEu = "OutputLogEvents";
|
|
698
|
-
const _OSA = "OpenSearchApplication";
|
|
699
|
-
const _OSC = "OpenSearchCollection";
|
|
700
|
-
const _OSDAP = "OpenSearchDataAccessPolicy";
|
|
701
|
-
const _OSDS = "OpenSearchDataSource";
|
|
702
|
-
const _OSEP = "OpenSearchEncryptionPolicy";
|
|
703
|
-
const _OSID = "OpenSearchIntegrationDetails";
|
|
704
|
-
const _OSLP = "OpenSearchLifecyclePolicy";
|
|
705
|
-
const _OSNP = "OpenSearchNetworkPolicy";
|
|
706
|
-
const _OSRC = "OpenSearchResourceConfig";
|
|
707
|
-
const _OSRS = "OpenSearchResourceStatus";
|
|
708
|
-
const _OSW = "OpenSearchWorkspace";
|
|
709
|
-
const _P = "Policy";
|
|
710
|
-
const _PAP = "PutAccountPolicy";
|
|
711
|
-
const _PAPR = "PutAccountPolicyRequest";
|
|
712
|
-
const _PAPRu = "PutAccountPolicyResponse";
|
|
713
|
-
const _PC = "ParseCloudfront";
|
|
714
|
-
const _PD = "PutDestination";
|
|
715
|
-
const _PDD = "PutDeliveryDestination";
|
|
716
|
-
const _PDDP = "PutDeliveryDestinationPolicy";
|
|
717
|
-
const _PDDPR = "PutDeliveryDestinationPolicyRequest";
|
|
718
|
-
const _PDDPRu = "PutDeliveryDestinationPolicyResponse";
|
|
719
|
-
const _PDDR = "PutDeliveryDestinationRequest";
|
|
720
|
-
const _PDDRu = "PutDeliveryDestinationResponse";
|
|
721
|
-
const _PDP = "PutDestinationPolicy";
|
|
722
|
-
const _PDPP = "PutDataProtectionPolicy";
|
|
723
|
-
const _PDPPR = "PutDataProtectionPolicyRequest";
|
|
724
|
-
const _PDPPRu = "PutDataProtectionPolicyResponse";
|
|
725
|
-
const _PDPR = "PutDestinationPolicyRequest";
|
|
726
|
-
const _PDR = "PutDestinationRequest";
|
|
727
|
-
const _PDRu = "PutDestinationResponse";
|
|
728
|
-
const _PDS = "PutDeliverySource";
|
|
729
|
-
const _PDSR = "PutDeliverySourceRequest";
|
|
730
|
-
const _PDSRu = "PutDeliverySourceResponse";
|
|
731
|
-
const _PI = "PutIntegration";
|
|
732
|
-
const _PIP = "PutIndexPolicy";
|
|
733
|
-
const _PIPR = "PutIndexPolicyRequest";
|
|
734
|
-
const _PIPRu = "PutIndexPolicyResponse";
|
|
735
|
-
const _PIR = "PutIntegrationRequest";
|
|
736
|
-
const _PIRu = "PutIntegrationResponse";
|
|
737
|
-
const _PJSON = "ParseJSON";
|
|
738
|
-
const _PKV = "ParseKeyValue";
|
|
739
|
-
const _PLE = "PutLogEvents";
|
|
740
|
-
const _PLER = "PutLogEventsRequest";
|
|
741
|
-
const _PLERu = "PutLogEventsResponse";
|
|
742
|
-
const _PLGDP = "PutLogGroupDeletionProtection";
|
|
743
|
-
const _PLGDPR = "PutLogGroupDeletionProtectionRequest";
|
|
744
|
-
const _PMF = "PutMetricFilter";
|
|
745
|
-
const _PMFR = "PutMetricFilterRequest";
|
|
746
|
-
const _PP = "ParsePostgres";
|
|
747
|
-
const _PQD = "PutQueryDefinition";
|
|
748
|
-
const _PQDR = "PutQueryDefinitionRequest";
|
|
749
|
-
const _PQDRu = "PutQueryDefinitionResponse";
|
|
750
|
-
const _PR = "ParseRoute53";
|
|
751
|
-
const _PRP = "PutResourcePolicy";
|
|
752
|
-
const _PRPR = "PutResourcePolicyRequest";
|
|
753
|
-
const _PRPRu = "PutResourcePolicyResponse";
|
|
754
|
-
const _PRPRut = "PutRetentionPolicyRequest";
|
|
755
|
-
const _PRPu = "PutRetentionPolicy";
|
|
756
|
-
const _PSF = "PutSubscriptionFilter";
|
|
757
|
-
const _PSFR = "PutSubscriptionFilterRequest";
|
|
758
|
-
const _PT = "PatternToken";
|
|
759
|
-
const _PTOCSF = "ParseToOCSF";
|
|
760
|
-
const _PTR = "PutTransformerRequest";
|
|
761
|
-
const _PTa = "PatternTokens";
|
|
762
|
-
const _PTu = "PutTransformer";
|
|
763
|
-
const _PVPC = "ParseVPC";
|
|
764
|
-
const _PWAF = "ParseWAF";
|
|
765
|
-
const _Pr = "Processor";
|
|
766
|
-
const _Pro = "Processors";
|
|
767
|
-
const _QCE = "QueryCompileError";
|
|
768
|
-
const _QCEL = "QueryCompileErrorLocation";
|
|
769
|
-
const _QD = "QueryDefinition";
|
|
770
|
-
const _QDL = "QueryDefinitionList";
|
|
771
|
-
const _QI = "QueryInfo";
|
|
772
|
-
const _QIL = "QueryInfoList";
|
|
773
|
-
const _QR = "QueryResults";
|
|
774
|
-
const _QS = "QueryStatistics";
|
|
775
|
-
const _RAEE = "ResourceAlreadyExistsException";
|
|
776
|
-
const _RC = "ResourceConfig";
|
|
777
|
-
const _REI = "RejectedEntityInfo";
|
|
778
|
-
const _RF = "RecordField";
|
|
779
|
-
const _RFe = "ResultField";
|
|
780
|
-
const _RK = "RenameKeys";
|
|
781
|
-
const _RKE = "RenameKeyEntry";
|
|
782
|
-
const _RKEe = "RenameKeyEntries";
|
|
783
|
-
const _RLEI = "RejectedLogEventsInfo";
|
|
784
|
-
const _RNFE = "ResourceNotFoundException";
|
|
785
|
-
const _RP = "ResourcePolicy";
|
|
786
|
-
const _RPe = "ResourcePolicies";
|
|
787
|
-
const _RR = "ResultRows";
|
|
788
|
-
const _SC = "S3Configuration";
|
|
789
|
-
const _SDC = "S3DeliveryConfiguration";
|
|
790
|
-
const _SF = "SubscriptionFilter";
|
|
791
|
-
const _SFu = "SubscriptionFilters";
|
|
792
|
-
const _SLS = "SearchedLogStream";
|
|
793
|
-
const _SLSe = "SearchedLogStreams";
|
|
794
|
-
const _SLT = "StartLiveTail";
|
|
795
|
-
const _SLTR = "StartLiveTailRequest";
|
|
796
|
-
const _SLTRS = "StartLiveTailResponseStream";
|
|
797
|
-
const _SLTRt = "StartLiveTailResponse";
|
|
798
|
-
const _SP = "SuppressionPeriod";
|
|
799
|
-
const _SQ = "StartQuery";
|
|
800
|
-
const _SQD = "ScheduledQueryDestination";
|
|
801
|
-
const _SQDL = "ScheduledQueryDestinationList";
|
|
802
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
803
|
-
const _SQR = "StartQueryRequest";
|
|
804
|
-
const _SQRt = "StartQueryResponse";
|
|
805
|
-
const _SQRto = "StopQueryRequest";
|
|
806
|
-
const _SQRtop = "StopQueryResponse";
|
|
807
|
-
const _SQS = "ScheduledQuerySummary";
|
|
808
|
-
const _SQSL = "ScheduledQuerySummaryList";
|
|
809
|
-
const _SQt = "StopQuery";
|
|
810
|
-
const _SS = "SplitString";
|
|
811
|
-
const _SSE = "SessionStreamingException";
|
|
812
|
-
const _SSEp = "SplitStringEntry";
|
|
813
|
-
const _SSEpl = "SplitStringEntries";
|
|
814
|
-
const _SSEu = "SubstituteStringEntry";
|
|
815
|
-
const _SSEub = "SubstituteStringEntries";
|
|
816
|
-
const _SSu = "SubstituteString";
|
|
817
|
-
const _STE = "SessionTimeoutException";
|
|
818
|
-
const _STIS = "S3TableIntegrationSource";
|
|
819
|
-
const _STISa = "S3TableIntegrationSources";
|
|
820
|
-
const _SUE = "ServiceUnavailableException";
|
|
821
|
-
const _TC = "TypeConverter";
|
|
822
|
-
const _TCE = "TypeConverterEntry";
|
|
823
|
-
const _TCEy = "TypeConverterEntries";
|
|
824
|
-
const _TE = "ThrottlingException";
|
|
825
|
-
const _THR = "TriggerHistoryRecord";
|
|
826
|
-
const _THRL = "TriggerHistoryRecordList";
|
|
827
|
-
const _TL = "TransformedLogs";
|
|
828
|
-
const _TLG = "TagLogGroup";
|
|
829
|
-
const _TLGR = "TagLogGroupRequest";
|
|
830
|
-
const _TLR = "TransformedLogRecord";
|
|
831
|
-
const _TMF = "TestMetricFilter";
|
|
832
|
-
const _TMFR = "TestMetricFilterRequest";
|
|
833
|
-
const _TMFRe = "TestMetricFilterResponse";
|
|
834
|
-
const _TMTE = "TooManyTagsException";
|
|
835
|
-
const _TR = "TagResource";
|
|
836
|
-
const _TRR = "TagResourceRequest";
|
|
837
|
-
const _TS = "TrimString";
|
|
838
|
-
const _TT = "TestTransformer";
|
|
839
|
-
const _TTR = "TestTransformerRequest";
|
|
840
|
-
const _TTRe = "TestTransformerResponse";
|
|
841
|
-
const _UA = "UpdateAnomaly";
|
|
842
|
-
const _UAR = "UpdateAnomalyRequest";
|
|
843
|
-
const _UCE = "UnrecognizedClientException";
|
|
844
|
-
const _UCS = "UpperCaseString";
|
|
845
|
-
const _UDC = "UpdateDeliveryConfiguration";
|
|
846
|
-
const _UDCR = "UpdateDeliveryConfigurationRequest";
|
|
847
|
-
const _UDCRp = "UpdateDeliveryConfigurationResponse";
|
|
848
|
-
const _ULAD = "UpdateLogAnomalyDetector";
|
|
849
|
-
const _ULADR = "UpdateLogAnomalyDetectorRequest";
|
|
850
|
-
const _ULG = "UntagLogGroup";
|
|
851
|
-
const _ULGR = "UntagLogGroupRequest";
|
|
852
|
-
const _UR = "UntagResource";
|
|
853
|
-
const _URR = "UntagResourceRequest";
|
|
854
|
-
const _USQ = "UpdateScheduledQuery";
|
|
855
|
-
const _USQR = "UpdateScheduledQueryRequest";
|
|
856
|
-
const _USQRp = "UpdateScheduledQueryResponse";
|
|
857
|
-
const _VE = "ValidationException";
|
|
858
|
-
const _a = "active";
|
|
859
|
-
const _aA = "applicationArn";
|
|
860
|
-
const _aAFAVLDFR = "allowedActionForAllowVendedLogsDeliveryForResource";
|
|
861
|
-
const _aD = "anomalyDetectors";
|
|
862
|
-
const _aDA = "anomalyDetectorArn";
|
|
863
|
-
const _aDS = "anomalyDetectorStatus";
|
|
864
|
-
const _aE = "applicationEndpoint";
|
|
865
|
-
const _aF = "allowedFields";
|
|
866
|
-
const _aFD = "allowedFieldDelimiters";
|
|
867
|
-
const _aI = "accountId";
|
|
868
|
-
const _aIc = "accountIdentifiers";
|
|
869
|
-
const _aIn = "anomalyId";
|
|
870
|
-
const _aIp = "applicationId";
|
|
871
|
-
const _aK = "addKeys";
|
|
872
|
-
const _aLGS = "aggregateLogGroupSummaries";
|
|
873
|
-
const _aOF = "allowedOutputFormats";
|
|
874
|
-
const _aOTL = "applyOnTransformedLogs";
|
|
875
|
-
const _aP = "accountPolicies";
|
|
876
|
-
const _aPc = "accessPolicy";
|
|
877
|
-
const _aPcc = "accountPolicy";
|
|
878
|
-
const _aSPF = "allowedSuffixPathFields";
|
|
879
|
-
const _aVT = "anomalyVisibilityTime";
|
|
880
|
-
const _an = "anomalies";
|
|
881
|
-
const _ap = "application";
|
|
882
|
-
const _ar = "arn";
|
|
883
|
-
const _at = "attributes";
|
|
884
|
-
const _b = "baseline";
|
|
885
|
-
const _bI = "batchId";
|
|
886
|
-
const _bIS = "batchImportStatus";
|
|
887
|
-
const _bIy = "bytesImported";
|
|
888
|
-
const _bS = "bytesScanned";
|
|
889
|
-
const _c = "client";
|
|
890
|
-
const _cA = "collectionArn";
|
|
891
|
-
const _cE = "collectionEndpoint";
|
|
892
|
-
const _cT = "creationTime";
|
|
893
|
-
const _cTS = "creationTimeStamp";
|
|
894
|
-
const _cTSr = "createdTimeStamp";
|
|
895
|
-
const _cTl = "clientToken";
|
|
896
|
-
const _cTo = "configurationTemplates";
|
|
897
|
-
const _cTom = "completionTime";
|
|
898
|
-
const _cTr = "createTime";
|
|
899
|
-
const _cV = "copyValue";
|
|
900
|
-
const _co = "columns";
|
|
901
|
-
const _cod = "code";
|
|
902
|
-
const _col = "collection";
|
|
903
|
-
const _cs = "csv";
|
|
904
|
-
const _d = "description";
|
|
905
|
-
const _dA = "destinationArn";
|
|
906
|
-
const _dC = "destinationConfiguration";
|
|
907
|
-
const _dD = "deliveryDestinations";
|
|
908
|
-
const _dDA = "deliveryDestinationArn";
|
|
909
|
-
const _dDC = "deliveryDestinationConfiguration";
|
|
910
|
-
const _dDCV = "defaultDeliveryConfigValues";
|
|
911
|
-
const _dDN = "deliveryDestinationName";
|
|
912
|
-
const _dDP = "deliveryDestinationPolicy";
|
|
913
|
-
const _dDT = "deliveryDestinationType";
|
|
914
|
-
const _dDTe = "deliveryDestinationTypes";
|
|
915
|
-
const _dDe = "deliveryDestination";
|
|
916
|
-
const _dI = "destinationIdentifier";
|
|
917
|
-
const _dK = "deleteKeys";
|
|
918
|
-
const _dN = "detectorName";
|
|
919
|
-
const _dNe = "destinationName";
|
|
920
|
-
const _dP = "destinationPrefix";
|
|
921
|
-
const _dPE = "deletionProtectionEnabled";
|
|
922
|
-
const _dPS = "dataProtectionStatus";
|
|
923
|
-
const _dRA = "destinationResourceArn";
|
|
924
|
-
const _dS = "dataSource";
|
|
925
|
-
const _dSN = "deliverySourceName";
|
|
926
|
-
const _dSNa = "dataSourceName";
|
|
927
|
-
const _dSRA = "dataSourceRoleArn";
|
|
928
|
-
const _dST = "dataSourceType";
|
|
929
|
-
const _dSa = "dataSources";
|
|
930
|
-
const _dSe = "deliverySources";
|
|
931
|
-
const _dSel = "deliverySource";
|
|
932
|
-
const _dT = "destinationType";
|
|
933
|
-
const _dTC = "dateTimeConverter";
|
|
934
|
-
const _dTP = "dynamicTokenPosition";
|
|
935
|
-
const _dV = "defaultValue";
|
|
936
|
-
const _dVP = "dashboardViewerPrincipals";
|
|
937
|
-
const _da = "data";
|
|
938
|
-
const _de = "delivery";
|
|
939
|
-
const _del = "delimiter";
|
|
940
|
-
const _deli = "deliveries";
|
|
941
|
-
const _des = "destination";
|
|
942
|
-
const _desc = "descending";
|
|
943
|
-
const _dest = "destinations";
|
|
944
|
-
const _di = "dimensions";
|
|
945
|
-
const _dis = "distribution";
|
|
946
|
-
const _e = "error";
|
|
947
|
-
const _eBS = "estimatedBytesSkipped";
|
|
948
|
-
const _eCO = "endCharOffset";
|
|
949
|
-
const _eET = "endEventTime";
|
|
950
|
-
const _eF = "evaluationFrequency";
|
|
951
|
-
const _eHCP = "enableHiveCompatiblePath";
|
|
952
|
-
const _eI = "executionInfo";
|
|
953
|
-
const _eIv = "eventId";
|
|
954
|
-
const _eK = "encryptionKey";
|
|
955
|
-
const _eLEEI = "expiredLogEventEndIndex";
|
|
956
|
-
const _eM = "errorMessage";
|
|
957
|
-
const _eMv = "eventMessage";
|
|
958
|
-
const _eN = "eventNumber";
|
|
959
|
-
const _eP = "encryptionPolicy";
|
|
960
|
-
const _eRA = "executionRoleArn";
|
|
961
|
-
const _eRI = "expectedRevisionId";
|
|
962
|
-
const _eRS = "estimatedRecordsSkipped";
|
|
963
|
-
const _eS = "executionStatuses";
|
|
964
|
-
const _eSF = "emitSystemFields";
|
|
965
|
-
const _eSFD = "emitSystemFieldDimensions";
|
|
966
|
-
const _eST = "expectedSequenceToken";
|
|
967
|
-
const _eSv = "eventSource";
|
|
968
|
-
const _eSx = "executionStatus";
|
|
969
|
-
const _eT = "exportTasks";
|
|
970
|
-
const _eTn = "endTime";
|
|
971
|
-
const _eTr = "errorType";
|
|
972
|
-
const _eV = "extractedValues";
|
|
973
|
-
const _el = "element";
|
|
974
|
-
const _en = "entries";
|
|
975
|
-
const _ena = "enabled";
|
|
976
|
-
const _end = "endpoint";
|
|
977
|
-
const _ent = "entity";
|
|
978
|
-
const _enu = "enumerations";
|
|
979
|
-
const _ev = "events";
|
|
980
|
-
const _f = "from";
|
|
981
|
-
const _fD = "fieldDelimiter";
|
|
982
|
-
const _fE = "flattenedElement";
|
|
983
|
-
const _fET = "firstEventTime";
|
|
984
|
-
const _fETi = "firstEventTimestamp";
|
|
985
|
-
const _fI = "fieldIndexes";
|
|
986
|
-
const _fIN = "fieldIndexName";
|
|
987
|
-
const _fINi = "fieldIndexNames";
|
|
988
|
-
const _fLGA = "filterLogGroupArn";
|
|
989
|
-
const _fN = "filterName";
|
|
990
|
-
const _fNP = "filterNamePrefix";
|
|
991
|
-
const _fP = "filterPattern";
|
|
992
|
-
const _fS = "firstSeen";
|
|
993
|
-
const _fSC = "fieldSelectionCriteria";
|
|
994
|
-
const _fSi = "fieldStream";
|
|
995
|
-
const _fU = "forceUpdate";
|
|
996
|
-
const _fi = "fields";
|
|
997
|
-
const _fie = "field";
|
|
998
|
-
const _fl = "flatten";
|
|
999
|
-
const _fo = "force";
|
|
1000
|
-
const _g = "grok";
|
|
1001
|
-
const _gB = "groupBy";
|
|
1002
|
-
const _gI = "groupingIdentifiers";
|
|
1003
|
-
const _h = "histogram";
|
|
1004
|
-
const _hE = "httpError";
|
|
1005
|
-
const _i = "identifier";
|
|
1006
|
-
const _iA = "integrationArn";
|
|
1007
|
-
const _iB = "importBatches";
|
|
1008
|
-
const _iD = "integrationDetails";
|
|
1009
|
-
const _iDA = "importDestinationArn";
|
|
1010
|
-
const _iDs = "isDynamic";
|
|
1011
|
-
const _iF = "importFilter";
|
|
1012
|
-
const _iI = "importId";
|
|
1013
|
-
const _iLA = "includeLinkedAccounts";
|
|
1014
|
-
const _iN = "integrationName";
|
|
1015
|
-
const _iNP = "integrationNamePrefix";
|
|
1016
|
-
const _iP = "indexPolicies";
|
|
1017
|
-
const _iPLS = "isPatternLevelSuppression";
|
|
1018
|
-
const _iPn = "inheritedProperties";
|
|
1019
|
-
const _iPnd = "indexPolicy";
|
|
1020
|
-
const _iRA = "importRoleArn";
|
|
1021
|
-
const _iS = "importStatistics";
|
|
1022
|
-
const _iSA = "importSourceArn";
|
|
1023
|
-
const _iSm = "importStatus";
|
|
1024
|
-
const _iSn = "integrationStatus";
|
|
1025
|
-
const _iSnt = "integrationSummaries";
|
|
1026
|
-
const _iT = "ingestionTime";
|
|
1027
|
-
const _iTN = "inferredTokenName";
|
|
1028
|
-
const _iTn = "integrationType";
|
|
1029
|
-
const _id = "id";
|
|
1030
|
-
const _im = "imports";
|
|
1031
|
-
const _in = "interleaved";
|
|
1032
|
-
const _k = "key";
|
|
1033
|
-
const _kA = "keyAttributes";
|
|
1034
|
-
const _kKA = "kmsKeyArn";
|
|
1035
|
-
const _kKI = "kmsKeyId";
|
|
1036
|
-
const _kP = "keyPrefix";
|
|
1037
|
-
const _kVD = "keyValueDelimiter";
|
|
1038
|
-
const _l = "locale";
|
|
1039
|
-
const _lCS = "lowerCaseString";
|
|
1040
|
-
const _lE = "logEvents";
|
|
1041
|
-
const _lEFP = "logEventFilterPattern";
|
|
1042
|
-
const _lEM = "logEventMessages";
|
|
1043
|
-
const _lES = "lastExecutionStatus";
|
|
1044
|
-
const _lET = "lastEventTime";
|
|
1045
|
-
const _lETa = "lastEventTimestamp";
|
|
1046
|
-
const _lF = "logFields";
|
|
1047
|
-
const _lFN = "logFieldName";
|
|
1048
|
-
const _lFT = "logFieldType";
|
|
1049
|
-
const _lG = "logGroups";
|
|
1050
|
-
const _lGA = "logGroupArn";
|
|
1051
|
-
const _lGAL = "logGroupArnList";
|
|
1052
|
-
const _lGC = "logGroupCount";
|
|
1053
|
-
const _lGCo = "logGroupClass";
|
|
1054
|
-
const _lGF = "logGroupFields";
|
|
1055
|
-
const _lGI = "logGroupIdentifiers";
|
|
1056
|
-
const _lGIo = "logGroupIdentifier";
|
|
1057
|
-
const _lGN = "logGroupName";
|
|
1058
|
-
const _lGNP = "logGroupNamePrefix";
|
|
1059
|
-
const _lGNPo = "logGroupNamePattern";
|
|
1060
|
-
const _lGNo = "logGroupNames";
|
|
1061
|
-
const _lGS = "logGroupsScanned";
|
|
1062
|
-
const _lIT = "lastIngestionTime";
|
|
1063
|
-
const _lM = "lastModified";
|
|
1064
|
-
const _lMT = "lastModifiedTime";
|
|
1065
|
-
const _lMTS = "lastModifiedTimeStamp";
|
|
1066
|
-
const _lOP = "logObjectPointer";
|
|
1067
|
-
const _lP = "lifecyclePolicy";
|
|
1068
|
-
const _lR = "logRecord";
|
|
1069
|
-
const _lRP = "logRecordPointer";
|
|
1070
|
-
const _lS = "lastSeen";
|
|
1071
|
-
const _lSN = "logStreamName";
|
|
1072
|
-
const _lSNP = "logStreamNamePrefix";
|
|
1073
|
-
const _lSNPo = "logStreamNamePrefixes";
|
|
1074
|
-
const _lSNo = "logStreamNames";
|
|
1075
|
-
const _lST = "lastScanTime";
|
|
1076
|
-
const _lSo = "logSamples";
|
|
1077
|
-
const _lSog = "logStreams";
|
|
1078
|
-
const _lT = "logType";
|
|
1079
|
-
const _lTM = "listToMap";
|
|
1080
|
-
const _lTT = "lastTriggeredTime";
|
|
1081
|
-
const _lTo = "logTypes";
|
|
1082
|
-
const _lUT = "lastUpdatedTime";
|
|
1083
|
-
const _lUTa = "lastUpdateTime";
|
|
1084
|
-
const _li = "limit";
|
|
1085
|
-
const _lo = "location";
|
|
1086
|
-
const _m = "message";
|
|
1087
|
-
const _mF = "metricFilters";
|
|
1088
|
-
const _mFC = "metricFilterCount";
|
|
1089
|
-
const _mK = "moveKeys";
|
|
1090
|
-
const _mN = "metricName";
|
|
1091
|
-
const _mNe = "metricNamespace";
|
|
1092
|
-
const _mP = "matchPatterns";
|
|
1093
|
-
const _mR = "maxResults";
|
|
1094
|
-
const _mT = "metricTransformations";
|
|
1095
|
-
const _mV = "metricValue";
|
|
1096
|
-
const _mVa = "mappingVersion";
|
|
1097
|
-
const _ma = "match";
|
|
1098
|
-
const _man = "mandatory";
|
|
1099
|
-
const _mat = "matches";
|
|
1100
|
-
const _n = "name";
|
|
1101
|
-
const _nBT = "nextBackwardToken";
|
|
1102
|
-
const _nFT = "nextForwardToken";
|
|
1103
|
-
const _nMV = "nonMatchValue";
|
|
1104
|
-
const _nP = "networkPolicy";
|
|
1105
|
-
const _nST = "nextSequenceToken";
|
|
1106
|
-
const _nT = "nextToken";
|
|
1107
|
-
const _oB = "orderBy";
|
|
1108
|
-
const _oF = "outputFormat";
|
|
1109
|
-
const _oIE = "overwriteIfExists";
|
|
1110
|
-
const _oSID = "openSearchIntegrationDetails";
|
|
1111
|
-
const _oSRC = "openSearchResourceConfig";
|
|
1112
|
-
const _oV = "ocsfVersion";
|
|
1113
|
-
const _p = "priority";
|
|
1114
|
-
const _pC = "parseCloudfront";
|
|
1115
|
-
const _pD = "policyDocument";
|
|
1116
|
-
const _pI = "patternId";
|
|
1117
|
-
const _pIr = "processedIdentifier";
|
|
1118
|
-
const _pJSON = "parseJSON";
|
|
1119
|
-
const _pKV = "parseKeyValue";
|
|
1120
|
-
const _pN = "policyName";
|
|
1121
|
-
const _pP = "parsePostgres";
|
|
1122
|
-
const _pR = "patternRegex";
|
|
1123
|
-
const _pRa = "parseRoute53";
|
|
1124
|
-
const _pS = "patternString";
|
|
1125
|
-
const _pSo = "policyScope";
|
|
1126
|
-
const _pT = "policyType";
|
|
1127
|
-
const _pTOCSF = "parseToOCSF";
|
|
1128
|
-
const _pTa = "patternTokens";
|
|
1129
|
-
const _pVPC = "parseVPC";
|
|
1130
|
-
const _pWAF = "parseWAF";
|
|
1131
|
-
const _pe = "percent";
|
|
1132
|
-
const _po = "policy";
|
|
1133
|
-
const _q = "queries";
|
|
1134
|
-
const _qC = "quoteCharacter";
|
|
1135
|
-
const _qCE = "queryCompileError";
|
|
1136
|
-
const _qD = "queryDefinitions";
|
|
1137
|
-
const _qDI = "queryDefinitionId";
|
|
1138
|
-
const _qDNP = "queryDefinitionNamePrefix";
|
|
1139
|
-
const _qI = "queryId";
|
|
1140
|
-
const _qL = "queryLanguage";
|
|
1141
|
-
const _qS = "queryString";
|
|
1142
|
-
const _r = "results";
|
|
1143
|
-
const _rA = "resourceArn";
|
|
1144
|
-
const _rAe = "resourceArns";
|
|
1145
|
-
const _rAo = "roleArn";
|
|
1146
|
-
const _rC = "resourceConfig";
|
|
1147
|
-
const _rD = "retentionDays";
|
|
1148
|
-
const _rEI = "rejectedEntityInfo";
|
|
1149
|
-
const _rF = "recordFields";
|
|
1150
|
-
const _rI = "resourceIdentifier";
|
|
1151
|
-
const _rID = "retentionInDays";
|
|
1152
|
-
const _rIe = "requestId";
|
|
1153
|
-
const _rIev = "revisionId";
|
|
1154
|
-
const _rK = "renameKeys";
|
|
1155
|
-
const _rLEI = "rejectedLogEventsInfo";
|
|
1156
|
-
const _rM = "recordsMatched";
|
|
1157
|
-
const _rN = "resourceName";
|
|
1158
|
-
const _rP = "resourcePolicies";
|
|
1159
|
-
const _rPe = "resourcePolicy";
|
|
1160
|
-
const _rS = "recordsScanned";
|
|
1161
|
-
const _rSe = "responseStream";
|
|
1162
|
-
const _rT = "resourceType";
|
|
1163
|
-
const _rTe = "resourceTypes";
|
|
1164
|
-
const _rTen = "renameTo";
|
|
1165
|
-
const _s = "scope";
|
|
1166
|
-
const _sB = "storedBytes";
|
|
1167
|
-
const _sC = "selectionCriteria";
|
|
1168
|
-
const _sCO = "startCharOffset";
|
|
1169
|
-
const _sCe = "searchedCompletely";
|
|
1170
|
-
const _sCo = "s3Configuration";
|
|
1171
|
-
const _sCt = "statusCode";
|
|
1172
|
-
const _sD = "suppressedDate";
|
|
1173
|
-
const _sDC = "s3DeliveryConfiguration";
|
|
1174
|
-
const _sE = "scheduleExpression";
|
|
1175
|
-
const _sET = "scheduleEndTime";
|
|
1176
|
-
const _sETt = "startEventTime";
|
|
1177
|
-
const _sF = "subscriptionFilters";
|
|
1178
|
-
const _sFH = "startFromHead";
|
|
1179
|
-
const _sI = "sessionId";
|
|
1180
|
-
const _sLS = "searchedLogStreams";
|
|
1181
|
-
const _sM = "sessionMetadata";
|
|
1182
|
-
const _sMt = "statusMessage";
|
|
1183
|
-
const _sP = "suffixPath";
|
|
1184
|
-
const _sPu = "suppressionPeriod";
|
|
1185
|
-
const _sQ = "scheduledQueries";
|
|
1186
|
-
const _sQA = "scheduledQueryArn";
|
|
1187
|
-
const _sR = "sessionResults";
|
|
1188
|
-
const _sRt = "statusReason";
|
|
1189
|
-
const _sS = "suppressionState";
|
|
1190
|
-
const _sST = "scheduleStartTime";
|
|
1191
|
-
const _sSe = "sessionStart";
|
|
1192
|
-
const _sSp = "splitString";
|
|
1193
|
-
const _sSu = "substituteString";
|
|
1194
|
-
const _sT = "sourceTimezone";
|
|
1195
|
-
const _sTO = "startTimeOffset";
|
|
1196
|
-
const _sTe = "sequenceToken";
|
|
1197
|
-
const _sTt = "startTime";
|
|
1198
|
-
const _sTu = "suppressionType";
|
|
1199
|
-
const _sU = "suppressedUntil";
|
|
1200
|
-
const _sUe = "sessionUpdate";
|
|
1201
|
-
const _sUu = "suppressionUnit";
|
|
1202
|
-
const _sa = "sampled";
|
|
1203
|
-
const _se = "service";
|
|
1204
|
-
const _ser = "server";
|
|
1205
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cloudwatchlogs";
|
|
1206
|
-
const _so = "source";
|
|
1207
|
-
const _sou = "sources";
|
|
1208
|
-
const _st = "state";
|
|
1209
|
-
const _sta = "status";
|
|
1210
|
-
const _stat = "statistics";
|
|
1211
|
-
const _str = "streaming";
|
|
1212
|
-
const _su = "suppressed";
|
|
1213
|
-
const _suc = "success";
|
|
1214
|
-
const _t = "target";
|
|
1215
|
-
const _tA = "targetArn";
|
|
1216
|
-
const _tC = "transformerConfig";
|
|
1217
|
-
const _tCy = "typeConverter";
|
|
1218
|
-
const _tEM = "transformedEventMessage";
|
|
1219
|
-
const _tF = "targetFormat";
|
|
1220
|
-
const _tH = "triggerHistory";
|
|
1221
|
-
const _tI = "taskId";
|
|
1222
|
-
const _tK = "tagKeys";
|
|
1223
|
-
const _tL = "transformedLogs";
|
|
1224
|
-
const _tN = "taskName";
|
|
1225
|
-
const _tNLESI = "tooNewLogEventStartIndex";
|
|
1226
|
-
const _tOLEEI = "tooOldLogEventEndIndex";
|
|
1227
|
-
const _tS = "tokenString";
|
|
1228
|
-
const _tSr = "trimString";
|
|
1229
|
-
const _tT = "targetTimezone";
|
|
1230
|
-
const _tTr = "triggeredTimestamp";
|
|
1231
|
-
const _ta = "tags";
|
|
1232
|
-
const _ti = "timezone";
|
|
1233
|
-
const _tim = "timestamp";
|
|
1234
|
-
const _time = "time";
|
|
1235
|
-
const _to = "to";
|
|
1236
|
-
const _ty = "type";
|
|
1237
|
-
const _u = "unmask";
|
|
1238
|
-
const _uCS = "upperCaseString";
|
|
1239
|
-
const _uST = "uploadSequenceToken";
|
|
1240
|
-
const _un = "unit";
|
|
1241
|
-
const _v = "value";
|
|
1242
|
-
const _vK = "valueKey";
|
|
1243
|
-
const _w = "workspace";
|
|
1244
|
-
const _wI = "workspaceId";
|
|
1245
|
-
const _wK = "withKeys";
|
|
1246
|
-
const n0 = "com.amazonaws.cloudwatchlogs";
|
|
1247
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
1248
|
-
{ [_e]: _c },
|
|
1249
|
-
[_m],
|
|
1250
|
-
[0]
|
|
1251
|
-
];
|
|
1252
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
1253
|
-
var AccountPolicy$ = [3, n0, _AP,
|
|
1254
|
-
0,
|
|
1255
|
-
[_pN, _pD, _lUT, _pT, _s, _sC, _aI],
|
|
1256
|
-
[0, 0, 1, 0, 0, 0, 0]
|
|
1257
|
-
];
|
|
1258
|
-
var AddKeyEntry$ = [3, n0, _AKE,
|
|
1259
|
-
0,
|
|
1260
|
-
[_k, _v, _oIE],
|
|
1261
|
-
[0, 0, 2], 2
|
|
1262
|
-
];
|
|
1263
|
-
var AddKeys$ = [3, n0, _AK,
|
|
1264
|
-
0,
|
|
1265
|
-
[_en],
|
|
1266
|
-
[() => AddKeyEntries], 1
|
|
1267
|
-
];
|
|
1268
|
-
var AggregateLogGroupSummary$ = [3, n0, _ALGS,
|
|
1269
|
-
0,
|
|
1270
|
-
[_lGC, _gI],
|
|
1271
|
-
[1, () => GroupingIdentifiers]
|
|
1272
|
-
];
|
|
1273
|
-
var Anomaly$ = [3, n0, _A,
|
|
1274
|
-
0,
|
|
1275
|
-
[_aIn, _pI, _aDA, _pS, _fS, _lS, _d, _a, _st, _h, _lSo, _pTa, _lGAL, _pR, _p, _su, _sD, _sU, _iPLS],
|
|
1276
|
-
[0, 0, 0, 0, 1, 1, 0, 2, 0, 128 | 1, () => LogSamples, () => PatternTokens, 64 | 0, 0, 0, 2, 1, 1, 2], 13
|
|
1277
|
-
];
|
|
1278
|
-
var AnomalyDetector$ = [3, n0, _AD,
|
|
1279
|
-
0,
|
|
1280
|
-
[_aDA, _dN, _lGAL, _eF, _fP, _aDS, _kKI, _cTS, _lMTS, _aVT],
|
|
1281
|
-
[0, 0, 64 | 0, 0, 0, 0, 0, 1, 1, 1]
|
|
1282
|
-
];
|
|
1283
|
-
var AssociateKmsKeyRequest$ = [3, n0, _AKKR,
|
|
1284
|
-
0,
|
|
1285
|
-
[_kKI, _lGN, _rI],
|
|
1286
|
-
[0, 0, 0], 1
|
|
1287
|
-
];
|
|
1288
|
-
var AssociateSourceToS3TableIntegrationRequest$ = [3, n0, _ASTSTIR,
|
|
1289
|
-
0,
|
|
1290
|
-
[_iA, _dS],
|
|
1291
|
-
[0, () => DataSource$], 2
|
|
1292
|
-
];
|
|
1293
|
-
var AssociateSourceToS3TableIntegrationResponse$ = [3, n0, _ASTSTIRs,
|
|
1294
|
-
0,
|
|
1295
|
-
[_i],
|
|
1296
|
-
[0]
|
|
1297
|
-
];
|
|
1298
|
-
var CancelExportTaskRequest$ = [3, n0, _CETR,
|
|
1299
|
-
0,
|
|
1300
|
-
[_tI],
|
|
1301
|
-
[0], 1
|
|
1302
|
-
];
|
|
1303
|
-
var CancelImportTaskRequest$ = [3, n0, _CITR,
|
|
1304
|
-
0,
|
|
1305
|
-
[_iI],
|
|
1306
|
-
[0], 1
|
|
1307
|
-
];
|
|
1308
|
-
var CancelImportTaskResponse$ = [3, n0, _CITRa,
|
|
1309
|
-
0,
|
|
1310
|
-
[_iI, _iS, _iSm, _cT, _lUT],
|
|
1311
|
-
[0, () => ImportStatistics$, 0, 1, 1]
|
|
1312
|
-
];
|
|
1313
|
-
var ConfigurationTemplate$ = [3, n0, _CT,
|
|
1314
|
-
0,
|
|
1315
|
-
[_se, _lT, _rT, _dDT, _dDCV, _aF, _aOF, _aAFAVLDFR, _aFD, _aSPF],
|
|
1316
|
-
[0, 0, 0, 0, () => ConfigurationTemplateDeliveryConfigValues$, () => AllowedFields, 64 | 0, 0, 64 | 0, 64 | 0]
|
|
1317
|
-
];
|
|
1318
|
-
var ConfigurationTemplateDeliveryConfigValues$ = [3, n0, _CTDCV,
|
|
1319
|
-
0,
|
|
1320
|
-
[_rF, _fD, _sDC],
|
|
1321
|
-
[64 | 0, 0, () => S3DeliveryConfiguration$]
|
|
1322
|
-
];
|
|
1323
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
1324
|
-
{ [_e]: _c },
|
|
1325
|
-
[_m],
|
|
1326
|
-
[0]
|
|
1327
|
-
];
|
|
1328
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
1329
|
-
var CopyValue$ = [3, n0, _CV,
|
|
1330
|
-
0,
|
|
1331
|
-
[_en],
|
|
1332
|
-
[() => CopyValueEntries], 1
|
|
1333
|
-
];
|
|
1334
|
-
var CopyValueEntry$ = [3, n0, _CVE,
|
|
1335
|
-
0,
|
|
1336
|
-
[_so, _t, _oIE],
|
|
1337
|
-
[0, 0, 2], 2
|
|
1338
|
-
];
|
|
1339
|
-
var CreateDeliveryRequest$ = [3, n0, _CDR,
|
|
1340
|
-
0,
|
|
1341
|
-
[_dSN, _dDA, _rF, _fD, _sDC, _ta],
|
|
1342
|
-
[0, 0, 64 | 0, 0, () => S3DeliveryConfiguration$, 128 | 0], 2
|
|
1343
|
-
];
|
|
1344
|
-
var CreateDeliveryResponse$ = [3, n0, _CDRr,
|
|
1345
|
-
0,
|
|
1346
|
-
[_de],
|
|
1347
|
-
[() => Delivery$]
|
|
1348
|
-
];
|
|
1349
|
-
var CreateExportTaskRequest$ = [3, n0, _CETRr,
|
|
1350
|
-
0,
|
|
1351
|
-
[_lGN, _f, _to, _des, _tN, _lSNP, _dP],
|
|
1352
|
-
[0, 1, 1, 0, 0, 0, 0], 4
|
|
1353
|
-
];
|
|
1354
|
-
var CreateExportTaskResponse$ = [3, n0, _CETRre,
|
|
1355
|
-
0,
|
|
1356
|
-
[_tI],
|
|
1357
|
-
[0]
|
|
1358
|
-
];
|
|
1359
|
-
var CreateImportTaskRequest$ = [3, n0, _CITRr,
|
|
1360
|
-
0,
|
|
1361
|
-
[_iSA, _iRA, _iF],
|
|
1362
|
-
[0, 0, () => ImportFilter$], 2
|
|
1363
|
-
];
|
|
1364
|
-
var CreateImportTaskResponse$ = [3, n0, _CITRre,
|
|
1365
|
-
0,
|
|
1366
|
-
[_iI, _iDA, _cT],
|
|
1367
|
-
[0, 0, 1]
|
|
1368
|
-
];
|
|
1369
|
-
var CreateLogAnomalyDetectorRequest$ = [3, n0, _CLADR,
|
|
1370
|
-
0,
|
|
1371
|
-
[_lGAL, _dN, _eF, _fP, _kKI, _aVT, _ta],
|
|
1372
|
-
[64 | 0, 0, 0, 0, 0, 1, 128 | 0], 1
|
|
1373
|
-
];
|
|
1374
|
-
var CreateLogAnomalyDetectorResponse$ = [3, n0, _CLADRr,
|
|
1375
|
-
0,
|
|
1376
|
-
[_aDA],
|
|
1377
|
-
[0]
|
|
1378
|
-
];
|
|
1379
|
-
var CreateLogGroupRequest$ = [3, n0, _CLGR,
|
|
1380
|
-
0,
|
|
1381
|
-
[_lGN, _kKI, _ta, _lGCo, _dPE],
|
|
1382
|
-
[0, 0, 128 | 0, 0, 2], 1
|
|
1383
|
-
];
|
|
1384
|
-
var CreateLogStreamRequest$ = [3, n0, _CLSR,
|
|
1385
|
-
0,
|
|
1386
|
-
[_lGN, _lSN],
|
|
1387
|
-
[0, 0], 2
|
|
1388
|
-
];
|
|
1389
|
-
var CreateScheduledQueryRequest$ = [3, n0, _CSQR,
|
|
1390
|
-
0,
|
|
1391
|
-
[_n, _qL, _qS, _sE, _eRA, _d, _lGI, _ti, _sTO, _dC, _sST, _sET, _st, _ta],
|
|
1392
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 1, () => DestinationConfiguration$, 1, 1, 0, 128 | 0], 5
|
|
1393
|
-
];
|
|
1394
|
-
var CreateScheduledQueryResponse$ = [3, n0, _CSQRr,
|
|
1395
|
-
0,
|
|
1396
|
-
[_sQA, _st],
|
|
1397
|
-
[0, 0]
|
|
1398
|
-
];
|
|
1399
|
-
var CSV$ = [3, n0, _CSV,
|
|
1400
|
-
0,
|
|
1401
|
-
[_qC, _del, _co, _so],
|
|
1402
|
-
[0, 0, 64 | 0, 0]
|
|
1403
|
-
];
|
|
1404
|
-
var DataAlreadyAcceptedException$ = [-3, n0, _DAAE,
|
|
1405
|
-
{ [_e]: _c },
|
|
1406
|
-
[_eST, _m],
|
|
1407
|
-
[0, 0]
|
|
1408
|
-
];
|
|
1409
|
-
schema.TypeRegistry.for(n0).registerError(DataAlreadyAcceptedException$, DataAlreadyAcceptedException);
|
|
1410
|
-
var DataSource$ = [3, n0, _DS,
|
|
1411
|
-
0,
|
|
1412
|
-
[_n, _ty],
|
|
1413
|
-
[0, 0], 1
|
|
1414
|
-
];
|
|
1415
|
-
var DataSourceFilter$ = [3, n0, _DSF,
|
|
1416
|
-
0,
|
|
1417
|
-
[_n, _ty],
|
|
1418
|
-
[0, 0], 1
|
|
1419
|
-
];
|
|
1420
|
-
var DateTimeConverter$ = [3, n0, _DTC,
|
|
1421
|
-
0,
|
|
1422
|
-
[_so, _t, _mP, _tF, _sT, _tT, _l],
|
|
1423
|
-
[0, 0, 64 | 0, 0, 0, 0, 0], 3
|
|
1424
|
-
];
|
|
1425
|
-
var DeleteAccountPolicyRequest$ = [3, n0, _DAPR,
|
|
1426
|
-
0,
|
|
1427
|
-
[_pN, _pT],
|
|
1428
|
-
[0, 0], 2
|
|
1429
|
-
];
|
|
1430
|
-
var DeleteDataProtectionPolicyRequest$ = [3, n0, _DDPPR,
|
|
1431
|
-
0,
|
|
1432
|
-
[_lGIo],
|
|
1433
|
-
[0], 1
|
|
1434
|
-
];
|
|
1435
|
-
var DeleteDeliveryDestinationPolicyRequest$ = [3, n0, _DDDPR,
|
|
1436
|
-
0,
|
|
1437
|
-
[_dDN],
|
|
1438
|
-
[0], 1
|
|
1439
|
-
];
|
|
1440
|
-
var DeleteDeliveryDestinationRequest$ = [3, n0, _DDDR,
|
|
1441
|
-
0,
|
|
1442
|
-
[_n],
|
|
1443
|
-
[0], 1
|
|
1444
|
-
];
|
|
1445
|
-
var DeleteDeliveryRequest$ = [3, n0, _DDR,
|
|
1446
|
-
0,
|
|
1447
|
-
[_id],
|
|
1448
|
-
[0], 1
|
|
1449
|
-
];
|
|
1450
|
-
var DeleteDeliverySourceRequest$ = [3, n0, _DDSR,
|
|
1451
|
-
0,
|
|
1452
|
-
[_n],
|
|
1453
|
-
[0], 1
|
|
1454
|
-
];
|
|
1455
|
-
var DeleteDestinationRequest$ = [3, n0, _DDRe,
|
|
1456
|
-
0,
|
|
1457
|
-
[_dNe],
|
|
1458
|
-
[0], 1
|
|
1459
|
-
];
|
|
1460
|
-
var DeleteIndexPolicyRequest$ = [3, n0, _DIPR,
|
|
1461
|
-
0,
|
|
1462
|
-
[_lGIo],
|
|
1463
|
-
[0], 1
|
|
1464
|
-
];
|
|
1465
|
-
var DeleteIndexPolicyResponse$ = [3, n0, _DIPRe,
|
|
1466
|
-
0,
|
|
1467
|
-
[],
|
|
1468
|
-
[]
|
|
1469
|
-
];
|
|
1470
|
-
var DeleteIntegrationRequest$ = [3, n0, _DIR,
|
|
1471
|
-
0,
|
|
1472
|
-
[_iN, _fo],
|
|
1473
|
-
[0, 2], 1
|
|
1474
|
-
];
|
|
1475
|
-
var DeleteIntegrationResponse$ = [3, n0, _DIRe,
|
|
1476
|
-
0,
|
|
1477
|
-
[],
|
|
1478
|
-
[]
|
|
1479
|
-
];
|
|
1480
|
-
var DeleteKeys$ = [3, n0, _DK,
|
|
1481
|
-
0,
|
|
1482
|
-
[_wK],
|
|
1483
|
-
[64 | 0], 1
|
|
1484
|
-
];
|
|
1485
|
-
var DeleteLogAnomalyDetectorRequest$ = [3, n0, _DLADR,
|
|
1486
|
-
0,
|
|
1487
|
-
[_aDA],
|
|
1488
|
-
[0], 1
|
|
1489
|
-
];
|
|
1490
|
-
var DeleteLogGroupRequest$ = [3, n0, _DLGR,
|
|
1491
|
-
0,
|
|
1492
|
-
[_lGN],
|
|
1493
|
-
[0], 1
|
|
1494
|
-
];
|
|
1495
|
-
var DeleteLogStreamRequest$ = [3, n0, _DLSR,
|
|
1496
|
-
0,
|
|
1497
|
-
[_lGN, _lSN],
|
|
1498
|
-
[0, 0], 2
|
|
1499
|
-
];
|
|
1500
|
-
var DeleteMetricFilterRequest$ = [3, n0, _DMFR,
|
|
1501
|
-
0,
|
|
1502
|
-
[_lGN, _fN],
|
|
1503
|
-
[0, 0], 2
|
|
1504
|
-
];
|
|
1505
|
-
var DeleteQueryDefinitionRequest$ = [3, n0, _DQDR,
|
|
1506
|
-
0,
|
|
1507
|
-
[_qDI],
|
|
1508
|
-
[0], 1
|
|
1509
|
-
];
|
|
1510
|
-
var DeleteQueryDefinitionResponse$ = [3, n0, _DQDRe,
|
|
1511
|
-
0,
|
|
1512
|
-
[_suc],
|
|
1513
|
-
[2]
|
|
1514
|
-
];
|
|
1515
|
-
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
|
|
1516
|
-
0,
|
|
1517
|
-
[_pN, _rA, _eRI],
|
|
1518
|
-
[0, 0, 0]
|
|
1519
|
-
];
|
|
1520
|
-
var DeleteRetentionPolicyRequest$ = [3, n0, _DRPRe,
|
|
1521
|
-
0,
|
|
1522
|
-
[_lGN],
|
|
1523
|
-
[0], 1
|
|
1524
|
-
];
|
|
1525
|
-
var DeleteScheduledQueryRequest$ = [3, n0, _DSQR,
|
|
1526
|
-
0,
|
|
1527
|
-
[_i],
|
|
1528
|
-
[0], 1
|
|
1529
|
-
];
|
|
1530
|
-
var DeleteScheduledQueryResponse$ = [3, n0, _DSQRe,
|
|
1531
|
-
0,
|
|
1532
|
-
[],
|
|
1533
|
-
[]
|
|
1534
|
-
];
|
|
1535
|
-
var DeleteSubscriptionFilterRequest$ = [3, n0, _DSFR,
|
|
1536
|
-
0,
|
|
1537
|
-
[_lGN, _fN],
|
|
1538
|
-
[0, 0], 2
|
|
1539
|
-
];
|
|
1540
|
-
var DeleteTransformerRequest$ = [3, n0, _DTR,
|
|
1541
|
-
0,
|
|
1542
|
-
[_lGIo],
|
|
1543
|
-
[0], 1
|
|
1544
|
-
];
|
|
1545
|
-
var Delivery$ = [3, n0, _D,
|
|
1546
|
-
0,
|
|
1547
|
-
[_id, _ar, _dSN, _dDA, _dDT, _rF, _fD, _sDC, _ta],
|
|
1548
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, () => S3DeliveryConfiguration$, 128 | 0]
|
|
1549
|
-
];
|
|
1550
|
-
var DeliveryDestination$ = [3, n0, _DD,
|
|
1551
|
-
0,
|
|
1552
|
-
[_n, _ar, _dDT, _oF, _dDC, _ta],
|
|
1553
|
-
[0, 0, 0, 0, () => DeliveryDestinationConfiguration$, 128 | 0]
|
|
1554
|
-
];
|
|
1555
|
-
var DeliveryDestinationConfiguration$ = [3, n0, _DDC,
|
|
1556
|
-
0,
|
|
1557
|
-
[_dRA],
|
|
1558
|
-
[0], 1
|
|
1559
|
-
];
|
|
1560
|
-
var DeliverySource$ = [3, n0, _DSe,
|
|
1561
|
-
0,
|
|
1562
|
-
[_n, _ar, _rAe, _se, _lT, _ta],
|
|
1563
|
-
[0, 0, 64 | 0, 0, 0, 128 | 0]
|
|
1564
|
-
];
|
|
1565
|
-
var DescribeAccountPoliciesRequest$ = [3, n0, _DAPRe,
|
|
1566
|
-
0,
|
|
1567
|
-
[_pT, _pN, _aIc, _nT],
|
|
1568
|
-
[0, 0, 64 | 0, 0], 1
|
|
1569
|
-
];
|
|
1570
|
-
var DescribeAccountPoliciesResponse$ = [3, n0, _DAPRes,
|
|
1571
|
-
0,
|
|
1572
|
-
[_aP, _nT],
|
|
1573
|
-
[() => AccountPolicies, 0]
|
|
1574
|
-
];
|
|
1575
|
-
var DescribeConfigurationTemplatesRequest$ = [3, n0, _DCTR,
|
|
1576
|
-
0,
|
|
1577
|
-
[_se, _lTo, _rTe, _dDTe, _nT, _li],
|
|
1578
|
-
[0, 64 | 0, 64 | 0, 64 | 0, 0, 1]
|
|
1579
|
-
];
|
|
1580
|
-
var DescribeConfigurationTemplatesResponse$ = [3, n0, _DCTRe,
|
|
1581
|
-
0,
|
|
1582
|
-
[_cTo, _nT],
|
|
1583
|
-
[() => ConfigurationTemplates, 0]
|
|
1584
|
-
];
|
|
1585
|
-
var DescribeDeliveriesRequest$ = [3, n0, _DDRes,
|
|
1586
|
-
0,
|
|
1587
|
-
[_nT, _li],
|
|
1588
|
-
[0, 1]
|
|
1589
|
-
];
|
|
1590
|
-
var DescribeDeliveriesResponse$ = [3, n0, _DDResc,
|
|
1591
|
-
0,
|
|
1592
|
-
[_deli, _nT],
|
|
1593
|
-
[() => Deliveries, 0]
|
|
1594
|
-
];
|
|
1595
|
-
var DescribeDeliveryDestinationsRequest$ = [3, n0, _DDDRe,
|
|
1596
|
-
0,
|
|
1597
|
-
[_nT, _li],
|
|
1598
|
-
[0, 1]
|
|
1599
|
-
];
|
|
1600
|
-
var DescribeDeliveryDestinationsResponse$ = [3, n0, _DDDRes,
|
|
1601
|
-
0,
|
|
1602
|
-
[_dD, _nT],
|
|
1603
|
-
[() => DeliveryDestinations, 0]
|
|
1604
|
-
];
|
|
1605
|
-
var DescribeDeliverySourcesRequest$ = [3, n0, _DDSRe,
|
|
1606
|
-
0,
|
|
1607
|
-
[_nT, _li],
|
|
1608
|
-
[0, 1]
|
|
1609
|
-
];
|
|
1610
|
-
var DescribeDeliverySourcesResponse$ = [3, n0, _DDSRes,
|
|
1611
|
-
0,
|
|
1612
|
-
[_dSe, _nT],
|
|
1613
|
-
[() => DeliverySources, 0]
|
|
1614
|
-
];
|
|
1615
|
-
var DescribeDestinationsRequest$ = [3, n0, _DDRescr,
|
|
1616
|
-
0,
|
|
1617
|
-
[_DNP, _nT, _li],
|
|
1618
|
-
[0, 0, 1]
|
|
1619
|
-
];
|
|
1620
|
-
var DescribeDestinationsResponse$ = [3, n0, _DDRescri,
|
|
1621
|
-
0,
|
|
1622
|
-
[_dest, _nT],
|
|
1623
|
-
[() => Destinations, 0]
|
|
1624
|
-
];
|
|
1625
|
-
var DescribeExportTasksRequest$ = [3, n0, _DETR,
|
|
1626
|
-
0,
|
|
1627
|
-
[_tI, _sCt, _nT, _li],
|
|
1628
|
-
[0, 0, 0, 1]
|
|
1629
|
-
];
|
|
1630
|
-
var DescribeExportTasksResponse$ = [3, n0, _DETRe,
|
|
1631
|
-
0,
|
|
1632
|
-
[_eT, _nT],
|
|
1633
|
-
[() => ExportTasks, 0]
|
|
1634
|
-
];
|
|
1635
|
-
var DescribeFieldIndexesRequest$ = [3, n0, _DFIR,
|
|
1636
|
-
0,
|
|
1637
|
-
[_lGI, _nT],
|
|
1638
|
-
[64 | 0, 0], 1
|
|
1639
|
-
];
|
|
1640
|
-
var DescribeFieldIndexesResponse$ = [3, n0, _DFIRe,
|
|
1641
|
-
0,
|
|
1642
|
-
[_fI, _nT],
|
|
1643
|
-
[() => FieldIndexes, 0]
|
|
1644
|
-
];
|
|
1645
|
-
var DescribeImportTaskBatchesRequest$ = [3, n0, _DITBR,
|
|
1646
|
-
0,
|
|
1647
|
-
[_iI, _bIS, _li, _nT],
|
|
1648
|
-
[0, 64 | 0, 1, 0], 1
|
|
1649
|
-
];
|
|
1650
|
-
var DescribeImportTaskBatchesResponse$ = [3, n0, _DITBRe,
|
|
1651
|
-
0,
|
|
1652
|
-
[_iSA, _iI, _iB, _nT],
|
|
1653
|
-
[0, 0, () => ImportBatchList, 0]
|
|
1654
|
-
];
|
|
1655
|
-
var DescribeImportTasksRequest$ = [3, n0, _DITR,
|
|
1656
|
-
0,
|
|
1657
|
-
[_iI, _iSm, _iSA, _li, _nT],
|
|
1658
|
-
[0, 0, 0, 1, 0]
|
|
1659
|
-
];
|
|
1660
|
-
var DescribeImportTasksResponse$ = [3, n0, _DITRe,
|
|
1661
|
-
0,
|
|
1662
|
-
[_im, _nT],
|
|
1663
|
-
[() => ImportList, 0]
|
|
1664
|
-
];
|
|
1665
|
-
var DescribeIndexPoliciesRequest$ = [3, n0, _DIPRes,
|
|
1666
|
-
0,
|
|
1667
|
-
[_lGI, _nT],
|
|
1668
|
-
[64 | 0, 0], 1
|
|
1669
|
-
];
|
|
1670
|
-
var DescribeIndexPoliciesResponse$ = [3, n0, _DIPResc,
|
|
1671
|
-
0,
|
|
1672
|
-
[_iP, _nT],
|
|
1673
|
-
[() => IndexPolicies, 0]
|
|
1674
|
-
];
|
|
1675
|
-
var DescribeLogGroupsRequest$ = [3, n0, _DLGRe,
|
|
1676
|
-
0,
|
|
1677
|
-
[_aIc, _lGNP, _lGNPo, _nT, _li, _iLA, _lGCo, _lGI],
|
|
1678
|
-
[64 | 0, 0, 0, 0, 1, 2, 0, 64 | 0]
|
|
1679
|
-
];
|
|
1680
|
-
var DescribeLogGroupsResponse$ = [3, n0, _DLGRes,
|
|
1681
|
-
0,
|
|
1682
|
-
[_lG, _nT],
|
|
1683
|
-
[() => LogGroups, 0]
|
|
1684
|
-
];
|
|
1685
|
-
var DescribeLogStreamsRequest$ = [3, n0, _DLSRe,
|
|
1686
|
-
0,
|
|
1687
|
-
[_lGN, _lGIo, _lSNP, _oB, _desc, _nT, _li],
|
|
1688
|
-
[0, 0, 0, 0, 2, 0, 1]
|
|
1689
|
-
];
|
|
1690
|
-
var DescribeLogStreamsResponse$ = [3, n0, _DLSRes,
|
|
1691
|
-
0,
|
|
1692
|
-
[_lSog, _nT],
|
|
1693
|
-
[() => LogStreams, 0]
|
|
1694
|
-
];
|
|
1695
|
-
var DescribeMetricFiltersRequest$ = [3, n0, _DMFRe,
|
|
1696
|
-
0,
|
|
1697
|
-
[_lGN, _fNP, _nT, _li, _mN, _mNe],
|
|
1698
|
-
[0, 0, 0, 1, 0, 0]
|
|
1699
|
-
];
|
|
1700
|
-
var DescribeMetricFiltersResponse$ = [3, n0, _DMFRes,
|
|
1701
|
-
0,
|
|
1702
|
-
[_mF, _nT],
|
|
1703
|
-
[() => MetricFilters, 0]
|
|
1704
|
-
];
|
|
1705
|
-
var DescribeQueriesRequest$ = [3, n0, _DQR,
|
|
1706
|
-
0,
|
|
1707
|
-
[_lGN, _sta, _mR, _nT, _qL],
|
|
1708
|
-
[0, 0, 1, 0, 0]
|
|
1709
|
-
];
|
|
1710
|
-
var DescribeQueriesResponse$ = [3, n0, _DQRe,
|
|
1711
|
-
0,
|
|
1712
|
-
[_q, _nT],
|
|
1713
|
-
[() => QueryInfoList, 0]
|
|
1714
|
-
];
|
|
1715
|
-
var DescribeQueryDefinitionsRequest$ = [3, n0, _DQDRes,
|
|
1716
|
-
0,
|
|
1717
|
-
[_qL, _qDNP, _mR, _nT],
|
|
1718
|
-
[0, 0, 1, 0]
|
|
1719
|
-
];
|
|
1720
|
-
var DescribeQueryDefinitionsResponse$ = [3, n0, _DQDResc,
|
|
1721
|
-
0,
|
|
1722
|
-
[_qD, _nT],
|
|
1723
|
-
[() => QueryDefinitionList, 0]
|
|
1724
|
-
];
|
|
1725
|
-
var DescribeResourcePoliciesRequest$ = [3, n0, _DRPRes,
|
|
1726
|
-
0,
|
|
1727
|
-
[_nT, _li, _rA, _pSo],
|
|
1728
|
-
[0, 1, 0, 0]
|
|
1729
|
-
];
|
|
1730
|
-
var DescribeResourcePoliciesResponse$ = [3, n0, _DRPResc,
|
|
1731
|
-
0,
|
|
1732
|
-
[_rP, _nT],
|
|
1733
|
-
[() => ResourcePolicies, 0]
|
|
1734
|
-
];
|
|
1735
|
-
var DescribeSubscriptionFiltersRequest$ = [3, n0, _DSFRe,
|
|
1736
|
-
0,
|
|
1737
|
-
[_lGN, _fNP, _nT, _li],
|
|
1738
|
-
[0, 0, 0, 1], 1
|
|
1739
|
-
];
|
|
1740
|
-
var DescribeSubscriptionFiltersResponse$ = [3, n0, _DSFRes,
|
|
1741
|
-
0,
|
|
1742
|
-
[_sF, _nT],
|
|
1743
|
-
[() => SubscriptionFilters, 0]
|
|
1744
|
-
];
|
|
1745
|
-
var Destination$ = [3, n0, _De,
|
|
1746
|
-
0,
|
|
1747
|
-
[_dNe, _tA, _rAo, _aPc, _ar, _cT],
|
|
1748
|
-
[0, 0, 0, 0, 0, 1]
|
|
1749
|
-
];
|
|
1750
|
-
var DestinationConfiguration$ = [3, n0, _DC,
|
|
1751
|
-
0,
|
|
1752
|
-
[_sCo],
|
|
1753
|
-
[() => S3Configuration$], 1
|
|
1754
|
-
];
|
|
1755
|
-
var DisassociateKmsKeyRequest$ = [3, n0, _DKKR,
|
|
1756
|
-
0,
|
|
1757
|
-
[_lGN, _rI],
|
|
1758
|
-
[0, 0]
|
|
1759
|
-
];
|
|
1760
|
-
var DisassociateSourceFromS3TableIntegrationRequest$ = [3, n0, _DSFSTIR,
|
|
1761
|
-
0,
|
|
1762
|
-
[_i],
|
|
1763
|
-
[0], 1
|
|
1764
|
-
];
|
|
1765
|
-
var DisassociateSourceFromS3TableIntegrationResponse$ = [3, n0, _DSFSTIRi,
|
|
1766
|
-
0,
|
|
1767
|
-
[_i],
|
|
1768
|
-
[0]
|
|
1769
|
-
];
|
|
1770
|
-
var Entity$ = [3, n0, _E,
|
|
1771
|
-
0,
|
|
1772
|
-
[_kA, _at],
|
|
1773
|
-
[128 | 0, 128 | 0]
|
|
1774
|
-
];
|
|
1775
|
-
var ExportTask$ = [3, n0, _ET,
|
|
1776
|
-
0,
|
|
1777
|
-
[_tI, _tN, _lGN, _f, _to, _des, _dP, _sta, _eI],
|
|
1778
|
-
[0, 0, 0, 1, 1, 0, 0, () => ExportTaskStatus$, () => ExportTaskExecutionInfo$]
|
|
1779
|
-
];
|
|
1780
|
-
var ExportTaskExecutionInfo$ = [3, n0, _ETEI,
|
|
1781
|
-
0,
|
|
1782
|
-
[_cT, _cTom],
|
|
1783
|
-
[1, 1]
|
|
1784
|
-
];
|
|
1785
|
-
var ExportTaskStatus$ = [3, n0, _ETS,
|
|
1786
|
-
0,
|
|
1787
|
-
[_cod, _m],
|
|
1788
|
-
[0, 0]
|
|
1789
|
-
];
|
|
1790
|
-
var FieldIndex$ = [3, n0, _FI,
|
|
1791
|
-
0,
|
|
1792
|
-
[_lGIo, _fIN, _lST, _fET, _lET, _ty],
|
|
1793
|
-
[0, 0, 1, 1, 1, 0]
|
|
1794
|
-
];
|
|
1795
|
-
var FieldsData$ = [3, n0, _FD,
|
|
1796
|
-
0,
|
|
1797
|
-
[_da],
|
|
1798
|
-
[21]
|
|
1799
|
-
];
|
|
1800
|
-
var FilteredLogEvent$ = [3, n0, _FLE,
|
|
1801
|
-
0,
|
|
1802
|
-
[_lSN, _tim, _m, _iT, _eIv],
|
|
1803
|
-
[0, 1, 0, 1, 0]
|
|
1804
|
-
];
|
|
1805
|
-
var FilterLogEventsRequest$ = [3, n0, _FLER,
|
|
1806
|
-
0,
|
|
1807
|
-
[_lGN, _lGIo, _lSNo, _lSNP, _sTt, _eTn, _fP, _nT, _li, _in, _u],
|
|
1808
|
-
[0, 0, 64 | 0, 0, 1, 1, 0, 0, 1, 2, 2]
|
|
1809
|
-
];
|
|
1810
|
-
var FilterLogEventsResponse$ = [3, n0, _FLERi,
|
|
1811
|
-
0,
|
|
1812
|
-
[_ev, _sLS, _nT],
|
|
1813
|
-
[() => FilteredLogEvents, () => SearchedLogStreams, 0]
|
|
1814
|
-
];
|
|
1815
|
-
var GetDataProtectionPolicyRequest$ = [3, n0, _GDPPR,
|
|
1816
|
-
0,
|
|
1817
|
-
[_lGIo],
|
|
1818
|
-
[0], 1
|
|
1819
|
-
];
|
|
1820
|
-
var GetDataProtectionPolicyResponse$ = [3, n0, _GDPPRe,
|
|
1821
|
-
0,
|
|
1822
|
-
[_lGIo, _pD, _lUT],
|
|
1823
|
-
[0, 0, 1]
|
|
1824
|
-
];
|
|
1825
|
-
var GetDeliveryDestinationPolicyRequest$ = [3, n0, _GDDPR,
|
|
1826
|
-
0,
|
|
1827
|
-
[_dDN],
|
|
1828
|
-
[0], 1
|
|
1829
|
-
];
|
|
1830
|
-
var GetDeliveryDestinationPolicyResponse$ = [3, n0, _GDDPRe,
|
|
1831
|
-
0,
|
|
1832
|
-
[_po],
|
|
1833
|
-
[() => Policy$]
|
|
1834
|
-
];
|
|
1835
|
-
var GetDeliveryDestinationRequest$ = [3, n0, _GDDR,
|
|
1836
|
-
0,
|
|
1837
|
-
[_n],
|
|
1838
|
-
[0], 1
|
|
1839
|
-
];
|
|
1840
|
-
var GetDeliveryDestinationResponse$ = [3, n0, _GDDRe,
|
|
1841
|
-
0,
|
|
1842
|
-
[_dDe],
|
|
1843
|
-
[() => DeliveryDestination$]
|
|
1844
|
-
];
|
|
1845
|
-
var GetDeliveryRequest$ = [3, n0, _GDR,
|
|
1846
|
-
0,
|
|
1847
|
-
[_id],
|
|
1848
|
-
[0], 1
|
|
1849
|
-
];
|
|
1850
|
-
var GetDeliveryResponse$ = [3, n0, _GDRe,
|
|
1851
|
-
0,
|
|
1852
|
-
[_de],
|
|
1853
|
-
[() => Delivery$]
|
|
1854
|
-
];
|
|
1855
|
-
var GetDeliverySourceRequest$ = [3, n0, _GDSR,
|
|
1856
|
-
0,
|
|
1857
|
-
[_n],
|
|
1858
|
-
[0], 1
|
|
1859
|
-
];
|
|
1860
|
-
var GetDeliverySourceResponse$ = [3, n0, _GDSRe,
|
|
1861
|
-
0,
|
|
1862
|
-
[_dSel],
|
|
1863
|
-
[() => DeliverySource$]
|
|
1864
|
-
];
|
|
1865
|
-
var GetIntegrationRequest$ = [3, n0, _GIR,
|
|
1866
|
-
0,
|
|
1867
|
-
[_iN],
|
|
1868
|
-
[0], 1
|
|
1869
|
-
];
|
|
1870
|
-
var GetIntegrationResponse$ = [3, n0, _GIRe,
|
|
1871
|
-
0,
|
|
1872
|
-
[_iN, _iTn, _iSn, _iD],
|
|
1873
|
-
[0, 0, 0, () => IntegrationDetails$]
|
|
1874
|
-
];
|
|
1875
|
-
var GetLogAnomalyDetectorRequest$ = [3, n0, _GLADR,
|
|
1876
|
-
0,
|
|
1877
|
-
[_aDA],
|
|
1878
|
-
[0], 1
|
|
1879
|
-
];
|
|
1880
|
-
var GetLogAnomalyDetectorResponse$ = [3, n0, _GLADRe,
|
|
1881
|
-
0,
|
|
1882
|
-
[_dN, _lGAL, _eF, _fP, _aDS, _kKI, _cTS, _lMTS, _aVT],
|
|
1883
|
-
[0, 64 | 0, 0, 0, 0, 0, 1, 1, 1]
|
|
1884
|
-
];
|
|
1885
|
-
var GetLogEventsRequest$ = [3, n0, _GLER,
|
|
1886
|
-
0,
|
|
1887
|
-
[_lSN, _lGN, _lGIo, _sTt, _eTn, _nT, _li, _sFH, _u],
|
|
1888
|
-
[0, 0, 0, 1, 1, 0, 1, 2, 2], 1
|
|
1889
|
-
];
|
|
1890
|
-
var GetLogEventsResponse$ = [3, n0, _GLERe,
|
|
1891
|
-
0,
|
|
1892
|
-
[_ev, _nFT, _nBT],
|
|
1893
|
-
[() => OutputLogEvents, 0, 0]
|
|
1894
|
-
];
|
|
1895
|
-
var GetLogFieldsRequest$ = [3, n0, _GLFR,
|
|
1896
|
-
0,
|
|
1897
|
-
[_dSNa, _dST],
|
|
1898
|
-
[0, 0], 2
|
|
1899
|
-
];
|
|
1900
|
-
var GetLogFieldsResponse$ = [3, n0, _GLFRe,
|
|
1901
|
-
0,
|
|
1902
|
-
[_lF],
|
|
1903
|
-
[() => LogFieldsList]
|
|
1904
|
-
];
|
|
1905
|
-
var GetLogGroupFieldsRequest$ = [3, n0, _GLGFR,
|
|
1906
|
-
0,
|
|
1907
|
-
[_lGN, _time, _lGIo],
|
|
1908
|
-
[0, 1, 0]
|
|
1909
|
-
];
|
|
1910
|
-
var GetLogGroupFieldsResponse$ = [3, n0, _GLGFRe,
|
|
1911
|
-
0,
|
|
1912
|
-
[_lGF],
|
|
1913
|
-
[() => LogGroupFieldList]
|
|
1914
|
-
];
|
|
1915
|
-
var GetLogObjectRequest$ = [3, n0, _GLOR,
|
|
1916
|
-
0,
|
|
1917
|
-
[_lOP, _u],
|
|
1918
|
-
[0, 2], 1
|
|
1919
|
-
];
|
|
1920
|
-
var GetLogObjectResponse$ = [3, n0, _GLORe,
|
|
1921
|
-
0,
|
|
1922
|
-
[_fSi],
|
|
1923
|
-
[[() => GetLogObjectResponseStream$, 0]]
|
|
1924
|
-
];
|
|
1925
|
-
var GetLogRecordRequest$ = [3, n0, _GLRR,
|
|
1926
|
-
0,
|
|
1927
|
-
[_lRP, _u],
|
|
1928
|
-
[0, 2], 1
|
|
1929
|
-
];
|
|
1930
|
-
var GetLogRecordResponse$ = [3, n0, _GLRRe,
|
|
1931
|
-
0,
|
|
1932
|
-
[_lR],
|
|
1933
|
-
[128 | 0]
|
|
1934
|
-
];
|
|
1935
|
-
var GetQueryResultsRequest$ = [3, n0, _GQRR,
|
|
1936
|
-
0,
|
|
1937
|
-
[_qI],
|
|
1938
|
-
[0], 1
|
|
1939
|
-
];
|
|
1940
|
-
var GetQueryResultsResponse$ = [3, n0, _GQRRe,
|
|
1941
|
-
0,
|
|
1942
|
-
[_qL, _r, _stat, _sta, _eK],
|
|
1943
|
-
[0, () => QueryResults, () => QueryStatistics$, 0, 0]
|
|
1944
|
-
];
|
|
1945
|
-
var GetScheduledQueryHistoryRequest$ = [3, n0, _GSQHR,
|
|
1946
|
-
0,
|
|
1947
|
-
[_i, _sTt, _eTn, _eS, _mR, _nT],
|
|
1948
|
-
[0, 1, 1, 64 | 0, 1, 0], 3
|
|
1949
|
-
];
|
|
1950
|
-
var GetScheduledQueryHistoryResponse$ = [3, n0, _GSQHRe,
|
|
1951
|
-
0,
|
|
1952
|
-
[_n, _sQA, _tH, _nT],
|
|
1953
|
-
[0, 0, () => TriggerHistoryRecordList, 0]
|
|
1954
|
-
];
|
|
1955
|
-
var GetScheduledQueryRequest$ = [3, n0, _GSQR,
|
|
1956
|
-
0,
|
|
1957
|
-
[_i],
|
|
1958
|
-
[0], 1
|
|
1959
|
-
];
|
|
1960
|
-
var GetScheduledQueryResponse$ = [3, n0, _GSQRe,
|
|
1961
|
-
0,
|
|
1962
|
-
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA, _cT, _lUT],
|
|
1963
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 1, () => DestinationConfiguration$, 0, 1, 0, 1, 1, 0, 1, 1]
|
|
1964
|
-
];
|
|
1965
|
-
var GetTransformerRequest$ = [3, n0, _GTR,
|
|
1966
|
-
0,
|
|
1967
|
-
[_lGIo],
|
|
1968
|
-
[0], 1
|
|
1969
|
-
];
|
|
1970
|
-
var GetTransformerResponse$ = [3, n0, _GTRe,
|
|
1971
|
-
0,
|
|
1972
|
-
[_lGIo, _cT, _lMT, _tC],
|
|
1973
|
-
[0, 1, 1, () => Processors]
|
|
1974
|
-
];
|
|
1975
|
-
var Grok$ = [3, n0, _G,
|
|
1976
|
-
0,
|
|
1977
|
-
[_ma, _so],
|
|
1978
|
-
[0, 0], 1
|
|
1979
|
-
];
|
|
1980
|
-
var GroupingIdentifier$ = [3, n0, _GI,
|
|
1981
|
-
0,
|
|
1982
|
-
[_k, _v],
|
|
1983
|
-
[0, 0]
|
|
1984
|
-
];
|
|
1985
|
-
var Import$ = [3, n0, _I,
|
|
1986
|
-
0,
|
|
1987
|
-
[_iI, _iSA, _iSm, _iDA, _iS, _iF, _cT, _lUT, _eM],
|
|
1988
|
-
[0, 0, 0, 0, () => ImportStatistics$, () => ImportFilter$, 1, 1, 0]
|
|
1989
|
-
];
|
|
1990
|
-
var ImportBatch$ = [3, n0, _IB,
|
|
1991
|
-
0,
|
|
1992
|
-
[_bI, _sta, _eM],
|
|
1993
|
-
[0, 0, 0], 2
|
|
1994
|
-
];
|
|
1995
|
-
var ImportFilter$ = [3, n0, _IF,
|
|
1996
|
-
0,
|
|
1997
|
-
[_sETt, _eET],
|
|
1998
|
-
[1, 1]
|
|
1999
|
-
];
|
|
2000
|
-
var ImportStatistics$ = [3, n0, _IS,
|
|
2001
|
-
0,
|
|
2002
|
-
[_bIy],
|
|
2003
|
-
[1]
|
|
2004
|
-
];
|
|
2005
|
-
var IndexPolicy$ = [3, n0, _IP,
|
|
2006
|
-
0,
|
|
2007
|
-
[_lGIo, _lUTa, _pD, _pN, _so],
|
|
2008
|
-
[0, 1, 0, 0, 0]
|
|
2009
|
-
];
|
|
2010
|
-
var InputLogEvent$ = [3, n0, _ILE,
|
|
2011
|
-
0,
|
|
2012
|
-
[_tim, _m],
|
|
2013
|
-
[1, 0], 2
|
|
2014
|
-
];
|
|
2015
|
-
var IntegrationSummary$ = [3, n0, _ISn,
|
|
2016
|
-
0,
|
|
2017
|
-
[_iN, _iTn, _iSn],
|
|
2018
|
-
[0, 0, 0]
|
|
2019
|
-
];
|
|
2020
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
2021
|
-
{ [_e]: _ser, [_hE]: 500 },
|
|
2022
|
-
[_m],
|
|
2023
|
-
[0]
|
|
2024
|
-
];
|
|
2025
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
2026
|
-
var InternalStreamingException$ = [-3, n0, _ISEn,
|
|
2027
|
-
{ [_e]: _c },
|
|
2028
|
-
[_m],
|
|
2029
|
-
[0]
|
|
2030
|
-
];
|
|
2031
|
-
schema.TypeRegistry.for(n0).registerError(InternalStreamingException$, InternalStreamingException);
|
|
2032
|
-
var InvalidOperationException$ = [-3, n0, _IOE,
|
|
2033
|
-
{ [_e]: _c },
|
|
2034
|
-
[_m],
|
|
2035
|
-
[0]
|
|
2036
|
-
];
|
|
2037
|
-
schema.TypeRegistry.for(n0).registerError(InvalidOperationException$, InvalidOperationException);
|
|
2038
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
2039
|
-
{ [_e]: _c },
|
|
2040
|
-
[_m],
|
|
2041
|
-
[0]
|
|
2042
|
-
];
|
|
2043
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
2044
|
-
var InvalidSequenceTokenException$ = [-3, n0, _ISTE,
|
|
2045
|
-
{ [_e]: _c },
|
|
2046
|
-
[_eST, _m],
|
|
2047
|
-
[0, 0]
|
|
2048
|
-
];
|
|
2049
|
-
schema.TypeRegistry.for(n0).registerError(InvalidSequenceTokenException$, InvalidSequenceTokenException);
|
|
2050
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
2051
|
-
{ [_e]: _c },
|
|
2052
|
-
[_m],
|
|
2053
|
-
[0]
|
|
2054
|
-
];
|
|
2055
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
2056
|
-
var ListAggregateLogGroupSummariesRequest$ = [3, n0, _LALGSR,
|
|
2057
|
-
0,
|
|
2058
|
-
[_gB, _aIc, _iLA, _lGCo, _lGNPo, _dSa, _nT, _li],
|
|
2059
|
-
[0, 64 | 0, 2, 0, 0, () => DataSourceFilters, 0, 1], 1
|
|
2060
|
-
];
|
|
2061
|
-
var ListAggregateLogGroupSummariesResponse$ = [3, n0, _LALGSRi,
|
|
2062
|
-
0,
|
|
2063
|
-
[_aLGS, _nT],
|
|
2064
|
-
[() => AggregateLogGroupSummaries, 0]
|
|
2065
|
-
];
|
|
2066
|
-
var ListAnomaliesRequest$ = [3, n0, _LAR,
|
|
2067
|
-
0,
|
|
2068
|
-
[_aDA, _sS, _li, _nT],
|
|
2069
|
-
[0, 0, 1, 0]
|
|
2070
|
-
];
|
|
2071
|
-
var ListAnomaliesResponse$ = [3, n0, _LARi,
|
|
2072
|
-
0,
|
|
2073
|
-
[_an, _nT],
|
|
2074
|
-
[() => Anomalies, 0]
|
|
2075
|
-
];
|
|
2076
|
-
var ListIntegrationsRequest$ = [3, n0, _LIR,
|
|
2077
|
-
0,
|
|
2078
|
-
[_iNP, _iTn, _iSn],
|
|
2079
|
-
[0, 0, 0]
|
|
2080
|
-
];
|
|
2081
|
-
var ListIntegrationsResponse$ = [3, n0, _LIRi,
|
|
2082
|
-
0,
|
|
2083
|
-
[_iSnt],
|
|
2084
|
-
[() => IntegrationSummaries]
|
|
2085
|
-
];
|
|
2086
|
-
var ListLogAnomalyDetectorsRequest$ = [3, n0, _LLADR,
|
|
2087
|
-
0,
|
|
2088
|
-
[_fLGA, _li, _nT],
|
|
2089
|
-
[0, 1, 0]
|
|
2090
|
-
];
|
|
2091
|
-
var ListLogAnomalyDetectorsResponse$ = [3, n0, _LLADRi,
|
|
2092
|
-
0,
|
|
2093
|
-
[_aD, _nT],
|
|
2094
|
-
[() => AnomalyDetectors, 0]
|
|
2095
|
-
];
|
|
2096
|
-
var ListLogGroupsForQueryRequest$ = [3, n0, _LLGFQR,
|
|
2097
|
-
0,
|
|
2098
|
-
[_qI, _nT, _mR],
|
|
2099
|
-
[0, 0, 1], 1
|
|
2100
|
-
];
|
|
2101
|
-
var ListLogGroupsForQueryResponse$ = [3, n0, _LLGFQRi,
|
|
2102
|
-
0,
|
|
2103
|
-
[_lGI, _nT],
|
|
2104
|
-
[64 | 0, 0]
|
|
2105
|
-
];
|
|
2106
|
-
var ListLogGroupsRequest$ = [3, n0, _LLGR,
|
|
2107
|
-
0,
|
|
2108
|
-
[_lGNPo, _lGCo, _iLA, _aIc, _nT, _li, _dSa, _fINi],
|
|
2109
|
-
[0, 0, 2, 64 | 0, 0, 1, () => DataSourceFilters, 64 | 0]
|
|
2110
|
-
];
|
|
2111
|
-
var ListLogGroupsResponse$ = [3, n0, _LLGRi,
|
|
2112
|
-
0,
|
|
2113
|
-
[_lG, _nT],
|
|
2114
|
-
[() => LogGroupSummaries, 0]
|
|
2115
|
-
];
|
|
2116
|
-
var ListScheduledQueriesRequest$ = [3, n0, _LSQR,
|
|
2117
|
-
0,
|
|
2118
|
-
[_mR, _nT, _st],
|
|
2119
|
-
[1, 0, 0]
|
|
2120
|
-
];
|
|
2121
|
-
var ListScheduledQueriesResponse$ = [3, n0, _LSQRi,
|
|
2122
|
-
0,
|
|
2123
|
-
[_nT, _sQ],
|
|
2124
|
-
[0, () => ScheduledQuerySummaryList]
|
|
2125
|
-
];
|
|
2126
|
-
var ListSourcesForS3TableIntegrationRequest$ = [3, n0, _LSFSTIR,
|
|
2127
|
-
0,
|
|
2128
|
-
[_iA, _mR, _nT],
|
|
2129
|
-
[0, 1, 0], 1
|
|
2130
|
-
];
|
|
2131
|
-
var ListSourcesForS3TableIntegrationResponse$ = [3, n0, _LSFSTIRi,
|
|
2132
|
-
0,
|
|
2133
|
-
[_sou, _nT],
|
|
2134
|
-
[() => S3TableIntegrationSources, 0]
|
|
2135
|
-
];
|
|
2136
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2137
|
-
0,
|
|
2138
|
-
[_rA],
|
|
2139
|
-
[0], 1
|
|
2140
|
-
];
|
|
2141
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2142
|
-
0,
|
|
2143
|
-
[_ta],
|
|
2144
|
-
[128 | 0]
|
|
2145
|
-
];
|
|
2146
|
-
var ListTagsLogGroupRequest$ = [3, n0, _LTLGR,
|
|
2147
|
-
0,
|
|
2148
|
-
[_lGN],
|
|
2149
|
-
[0], 1
|
|
2150
|
-
];
|
|
2151
|
-
var ListTagsLogGroupResponse$ = [3, n0, _LTLGRi,
|
|
2152
|
-
0,
|
|
2153
|
-
[_ta],
|
|
2154
|
-
[128 | 0]
|
|
2155
|
-
];
|
|
2156
|
-
var ListToMap$ = [3, n0, _LTM,
|
|
2157
|
-
0,
|
|
2158
|
-
[_so, _k, _vK, _t, _fl, _fE],
|
|
2159
|
-
[0, 0, 0, 0, 2, 0], 2
|
|
2160
|
-
];
|
|
2161
|
-
var LiveTailSessionLogEvent$ = [3, n0, _LTSLE,
|
|
2162
|
-
0,
|
|
2163
|
-
[_lSN, _lGIo, _m, _tim, _iT],
|
|
2164
|
-
[0, 0, 0, 1, 1]
|
|
2165
|
-
];
|
|
2166
|
-
var LiveTailSessionMetadata$ = [3, n0, _LTSM,
|
|
2167
|
-
0,
|
|
2168
|
-
[_sa],
|
|
2169
|
-
[2]
|
|
2170
|
-
];
|
|
2171
|
-
var LiveTailSessionStart$ = [3, n0, _LTSS,
|
|
2172
|
-
0,
|
|
2173
|
-
[_rIe, _sI, _lGI, _lSNo, _lSNPo, _lEFP],
|
|
2174
|
-
[0, 0, 64 | 0, 64 | 0, 64 | 0, 0]
|
|
2175
|
-
];
|
|
2176
|
-
var LiveTailSessionUpdate$ = [3, n0, _LTSU,
|
|
2177
|
-
0,
|
|
2178
|
-
[_sM, _sR],
|
|
2179
|
-
[() => LiveTailSessionMetadata$, () => LiveTailSessionResults]
|
|
2180
|
-
];
|
|
2181
|
-
var LogEvent$ = [3, n0, _LE,
|
|
2182
|
-
0,
|
|
2183
|
-
[_tim, _m],
|
|
2184
|
-
[1, 0]
|
|
2185
|
-
];
|
|
2186
|
-
var LogFieldsListItem$ = [3, n0, _LFLI,
|
|
2187
|
-
0,
|
|
2188
|
-
[_lFN, _lFT],
|
|
2189
|
-
[0, () => LogFieldType$]
|
|
2190
|
-
];
|
|
2191
|
-
var LogFieldType$ = [3, n0, _LFT,
|
|
2192
|
-
0,
|
|
2193
|
-
[_ty, _el, _fi],
|
|
2194
|
-
[0, () => LogFieldType$, () => LogFieldsList]
|
|
2195
|
-
];
|
|
2196
|
-
var LogGroup$ = [3, n0, _LG,
|
|
2197
|
-
0,
|
|
2198
|
-
[_lGN, _cT, _rID, _mFC, _ar, _sB, _kKI, _dPS, _iPn, _lGCo, _lGA, _dPE],
|
|
2199
|
-
[0, 1, 1, 1, 0, 1, 0, 0, 64 | 0, 0, 0, 2]
|
|
2200
|
-
];
|
|
2201
|
-
var LogGroupField$ = [3, n0, _LGF,
|
|
2202
|
-
0,
|
|
2203
|
-
[_n, _pe],
|
|
2204
|
-
[0, 1]
|
|
2205
|
-
];
|
|
2206
|
-
var LogGroupSummary$ = [3, n0, _LGS,
|
|
2207
|
-
0,
|
|
2208
|
-
[_lGN, _lGA, _lGCo],
|
|
2209
|
-
[0, 0, 0]
|
|
2210
|
-
];
|
|
2211
|
-
var LogStream$ = [3, n0, _LS,
|
|
2212
|
-
0,
|
|
2213
|
-
[_lSN, _cT, _fETi, _lETa, _lIT, _uST, _ar, _sB],
|
|
2214
|
-
[0, 1, 1, 1, 1, 0, 0, 1]
|
|
2215
|
-
];
|
|
2216
|
-
var LowerCaseString$ = [3, n0, _LCS,
|
|
2217
|
-
0,
|
|
2218
|
-
[_wK],
|
|
2219
|
-
[64 | 0], 1
|
|
2220
|
-
];
|
|
2221
|
-
var MalformedQueryException$ = [-3, n0, _MQE,
|
|
2222
|
-
{ [_e]: _c },
|
|
2223
|
-
[_qCE, _m],
|
|
2224
|
-
[() => QueryCompileError$, 0]
|
|
2225
|
-
];
|
|
2226
|
-
schema.TypeRegistry.for(n0).registerError(MalformedQueryException$, MalformedQueryException);
|
|
2227
|
-
var MetricFilter$ = [3, n0, _MF,
|
|
2228
|
-
0,
|
|
2229
|
-
[_fN, _fP, _mT, _cT, _lGN, _aOTL, _fSC, _eSFD],
|
|
2230
|
-
[0, 0, () => MetricTransformations, 1, 0, 2, 0, 64 | 0]
|
|
2231
|
-
];
|
|
2232
|
-
var MetricFilterMatchRecord$ = [3, n0, _MFMR,
|
|
2233
|
-
0,
|
|
2234
|
-
[_eN, _eMv, _eV],
|
|
2235
|
-
[1, 0, 128 | 0]
|
|
2236
|
-
];
|
|
2237
|
-
var MetricTransformation$ = [3, n0, _MT,
|
|
2238
|
-
0,
|
|
2239
|
-
[_mN, _mNe, _mV, _dV, _di, _un],
|
|
2240
|
-
[0, 0, 0, 1, 128 | 0, 0], 3
|
|
2241
|
-
];
|
|
2242
|
-
var MoveKeyEntry$ = [3, n0, _MKE,
|
|
2243
|
-
0,
|
|
2244
|
-
[_so, _t, _oIE],
|
|
2245
|
-
[0, 0, 2], 2
|
|
2246
|
-
];
|
|
2247
|
-
var MoveKeys$ = [3, n0, _MK,
|
|
2248
|
-
0,
|
|
2249
|
-
[_en],
|
|
2250
|
-
[() => MoveKeyEntries], 1
|
|
2251
|
-
];
|
|
2252
|
-
var OpenSearchApplication$ = [3, n0, _OSA,
|
|
2253
|
-
0,
|
|
2254
|
-
[_aE, _aA, _aIp, _sta],
|
|
2255
|
-
[0, 0, 0, () => OpenSearchResourceStatus$]
|
|
2256
|
-
];
|
|
2257
|
-
var OpenSearchCollection$ = [3, n0, _OSC,
|
|
2258
|
-
0,
|
|
2259
|
-
[_cE, _cA, _sta],
|
|
2260
|
-
[0, 0, () => OpenSearchResourceStatus$]
|
|
2261
|
-
];
|
|
2262
|
-
var OpenSearchDataAccessPolicy$ = [3, n0, _OSDAP,
|
|
2263
|
-
0,
|
|
2264
|
-
[_pN, _sta],
|
|
2265
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2266
|
-
];
|
|
2267
|
-
var OpenSearchDataSource$ = [3, n0, _OSDS,
|
|
2268
|
-
0,
|
|
2269
|
-
[_dSNa, _sta],
|
|
2270
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2271
|
-
];
|
|
2272
|
-
var OpenSearchEncryptionPolicy$ = [3, n0, _OSEP,
|
|
2273
|
-
0,
|
|
2274
|
-
[_pN, _sta],
|
|
2275
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2276
|
-
];
|
|
2277
|
-
var OpenSearchIntegrationDetails$ = [3, n0, _OSID,
|
|
2278
|
-
0,
|
|
2279
|
-
[_dS, _ap, _col, _w, _eP, _nP, _aPc, _lP],
|
|
2280
|
-
[() => OpenSearchDataSource$, () => OpenSearchApplication$, () => OpenSearchCollection$, () => OpenSearchWorkspace$, () => OpenSearchEncryptionPolicy$, () => OpenSearchNetworkPolicy$, () => OpenSearchDataAccessPolicy$, () => OpenSearchLifecyclePolicy$]
|
|
2281
|
-
];
|
|
2282
|
-
var OpenSearchLifecyclePolicy$ = [3, n0, _OSLP,
|
|
2283
|
-
0,
|
|
2284
|
-
[_pN, _sta],
|
|
2285
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2286
|
-
];
|
|
2287
|
-
var OpenSearchNetworkPolicy$ = [3, n0, _OSNP,
|
|
2288
|
-
0,
|
|
2289
|
-
[_pN, _sta],
|
|
2290
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2291
|
-
];
|
|
2292
|
-
var OpenSearchResourceConfig$ = [3, n0, _OSRC,
|
|
2293
|
-
0,
|
|
2294
|
-
[_dSRA, _dVP, _rD, _kKA, _aA],
|
|
2295
|
-
[0, 64 | 0, 1, 0, 0], 3
|
|
2296
|
-
];
|
|
2297
|
-
var OpenSearchResourceStatus$ = [3, n0, _OSRS,
|
|
2298
|
-
0,
|
|
2299
|
-
[_sta, _sMt],
|
|
2300
|
-
[0, 0]
|
|
2301
|
-
];
|
|
2302
|
-
var OpenSearchWorkspace$ = [3, n0, _OSW,
|
|
2303
|
-
0,
|
|
2304
|
-
[_wI, _sta],
|
|
2305
|
-
[0, () => OpenSearchResourceStatus$]
|
|
2306
|
-
];
|
|
2307
|
-
var OperationAbortedException$ = [-3, n0, _OAE,
|
|
2308
|
-
{ [_e]: _c },
|
|
2309
|
-
[_m],
|
|
2310
|
-
[0]
|
|
2311
|
-
];
|
|
2312
|
-
schema.TypeRegistry.for(n0).registerError(OperationAbortedException$, OperationAbortedException);
|
|
2313
|
-
var OutputLogEvent$ = [3, n0, _OLE,
|
|
2314
|
-
0,
|
|
2315
|
-
[_tim, _m, _iT],
|
|
2316
|
-
[1, 0, 1]
|
|
2317
|
-
];
|
|
2318
|
-
var ParseCloudfront$ = [3, n0, _PC,
|
|
2319
|
-
0,
|
|
2320
|
-
[_so],
|
|
2321
|
-
[0]
|
|
2322
|
-
];
|
|
2323
|
-
var ParseJSON$ = [3, n0, _PJSON,
|
|
2324
|
-
0,
|
|
2325
|
-
[_so, _des],
|
|
2326
|
-
[0, 0]
|
|
2327
|
-
];
|
|
2328
|
-
var ParseKeyValue$ = [3, n0, _PKV,
|
|
2329
|
-
0,
|
|
2330
|
-
[_so, _des, _fD, _kVD, _kP, _nMV, _oIE],
|
|
2331
|
-
[0, 0, 0, 0, 0, 0, 2]
|
|
2332
|
-
];
|
|
2333
|
-
var ParsePostgres$ = [3, n0, _PP,
|
|
2334
|
-
0,
|
|
2335
|
-
[_so],
|
|
2336
|
-
[0]
|
|
2337
|
-
];
|
|
2338
|
-
var ParseRoute53$ = [3, n0, _PR,
|
|
2339
|
-
0,
|
|
2340
|
-
[_so],
|
|
2341
|
-
[0]
|
|
2342
|
-
];
|
|
2343
|
-
var ParseToOCSF$ = [3, n0, _PTOCSF,
|
|
2344
|
-
0,
|
|
2345
|
-
[_eSv, _oV, _so, _mVa],
|
|
2346
|
-
[0, 0, 0, 0], 2
|
|
2347
|
-
];
|
|
2348
|
-
var ParseVPC$ = [3, n0, _PVPC,
|
|
2349
|
-
0,
|
|
2350
|
-
[_so],
|
|
2351
|
-
[0]
|
|
2352
|
-
];
|
|
2353
|
-
var ParseWAF$ = [3, n0, _PWAF,
|
|
2354
|
-
0,
|
|
2355
|
-
[_so],
|
|
2356
|
-
[0]
|
|
2357
|
-
];
|
|
2358
|
-
var PatternToken$ = [3, n0, _PT,
|
|
2359
|
-
0,
|
|
2360
|
-
[_dTP, _iDs, _tS, _enu, _iTN],
|
|
2361
|
-
[1, 2, 0, 128 | 1, 0]
|
|
2362
|
-
];
|
|
2363
|
-
var Policy$ = [3, n0, _P,
|
|
2364
|
-
0,
|
|
2365
|
-
[_dDP],
|
|
2366
|
-
[0]
|
|
2367
|
-
];
|
|
2368
|
-
var Processor$ = [3, n0, _Pr,
|
|
2369
|
-
0,
|
|
2370
|
-
[_aK, _cV, _cs, _dTC, _dK, _g, _lTM, _lCS, _mK, _pC, _pJSON, _pKV, _pRa, _pTOCSF, _pP, _pVPC, _pWAF, _rK, _sSp, _sSu, _tSr, _tCy, _uCS],
|
|
2371
|
-
[() => AddKeys$, () => CopyValue$, () => CSV$, () => DateTimeConverter$, () => DeleteKeys$, () => Grok$, () => ListToMap$, () => LowerCaseString$, () => MoveKeys$, () => ParseCloudfront$, () => ParseJSON$, () => ParseKeyValue$, () => ParseRoute53$, () => ParseToOCSF$, () => ParsePostgres$, () => ParseVPC$, () => ParseWAF$, () => RenameKeys$, () => SplitString$, () => SubstituteString$, () => TrimString$, () => TypeConverter$, () => UpperCaseString$]
|
|
2372
|
-
];
|
|
2373
|
-
var PutAccountPolicyRequest$ = [3, n0, _PAPR,
|
|
2374
|
-
0,
|
|
2375
|
-
[_pN, _pD, _pT, _s, _sC],
|
|
2376
|
-
[0, 0, 0, 0, 0], 3
|
|
2377
|
-
];
|
|
2378
|
-
var PutAccountPolicyResponse$ = [3, n0, _PAPRu,
|
|
2379
|
-
0,
|
|
2380
|
-
[_aPcc],
|
|
2381
|
-
[() => AccountPolicy$]
|
|
2382
|
-
];
|
|
2383
|
-
var PutDataProtectionPolicyRequest$ = [3, n0, _PDPPR,
|
|
2384
|
-
0,
|
|
2385
|
-
[_lGIo, _pD],
|
|
2386
|
-
[0, 0], 2
|
|
2387
|
-
];
|
|
2388
|
-
var PutDataProtectionPolicyResponse$ = [3, n0, _PDPPRu,
|
|
2389
|
-
0,
|
|
2390
|
-
[_lGIo, _pD, _lUT],
|
|
2391
|
-
[0, 0, 1]
|
|
2392
|
-
];
|
|
2393
|
-
var PutDeliveryDestinationPolicyRequest$ = [3, n0, _PDDPR,
|
|
2394
|
-
0,
|
|
2395
|
-
[_dDN, _dDP],
|
|
2396
|
-
[0, 0], 2
|
|
2397
|
-
];
|
|
2398
|
-
var PutDeliveryDestinationPolicyResponse$ = [3, n0, _PDDPRu,
|
|
2399
|
-
0,
|
|
2400
|
-
[_po],
|
|
2401
|
-
[() => Policy$]
|
|
2402
|
-
];
|
|
2403
|
-
var PutDeliveryDestinationRequest$ = [3, n0, _PDDR,
|
|
2404
|
-
0,
|
|
2405
|
-
[_n, _oF, _dDC, _dDT, _ta],
|
|
2406
|
-
[0, 0, () => DeliveryDestinationConfiguration$, 0, 128 | 0], 1
|
|
2407
|
-
];
|
|
2408
|
-
var PutDeliveryDestinationResponse$ = [3, n0, _PDDRu,
|
|
2409
|
-
0,
|
|
2410
|
-
[_dDe],
|
|
2411
|
-
[() => DeliveryDestination$]
|
|
2412
|
-
];
|
|
2413
|
-
var PutDeliverySourceRequest$ = [3, n0, _PDSR,
|
|
2414
|
-
0,
|
|
2415
|
-
[_n, _rA, _lT, _ta],
|
|
2416
|
-
[0, 0, 0, 128 | 0], 3
|
|
2417
|
-
];
|
|
2418
|
-
var PutDeliverySourceResponse$ = [3, n0, _PDSRu,
|
|
2419
|
-
0,
|
|
2420
|
-
[_dSel],
|
|
2421
|
-
[() => DeliverySource$]
|
|
2422
|
-
];
|
|
2423
|
-
var PutDestinationPolicyRequest$ = [3, n0, _PDPR,
|
|
2424
|
-
0,
|
|
2425
|
-
[_dNe, _aPc, _fU],
|
|
2426
|
-
[0, 0, 2], 2
|
|
2427
|
-
];
|
|
2428
|
-
var PutDestinationRequest$ = [3, n0, _PDR,
|
|
2429
|
-
0,
|
|
2430
|
-
[_dNe, _tA, _rAo, _ta],
|
|
2431
|
-
[0, 0, 0, 128 | 0], 3
|
|
2432
|
-
];
|
|
2433
|
-
var PutDestinationResponse$ = [3, n0, _PDRu,
|
|
2434
|
-
0,
|
|
2435
|
-
[_des],
|
|
2436
|
-
[() => Destination$]
|
|
2437
|
-
];
|
|
2438
|
-
var PutIndexPolicyRequest$ = [3, n0, _PIPR,
|
|
2439
|
-
0,
|
|
2440
|
-
[_lGIo, _pD],
|
|
2441
|
-
[0, 0], 2
|
|
2442
|
-
];
|
|
2443
|
-
var PutIndexPolicyResponse$ = [3, n0, _PIPRu,
|
|
2444
|
-
0,
|
|
2445
|
-
[_iPnd],
|
|
2446
|
-
[() => IndexPolicy$]
|
|
2447
|
-
];
|
|
2448
|
-
var PutIntegrationRequest$ = [3, n0, _PIR,
|
|
2449
|
-
0,
|
|
2450
|
-
[_iN, _rC, _iTn],
|
|
2451
|
-
[0, () => ResourceConfig$, 0], 3
|
|
2452
|
-
];
|
|
2453
|
-
var PutIntegrationResponse$ = [3, n0, _PIRu,
|
|
2454
|
-
0,
|
|
2455
|
-
[_iN, _iSn],
|
|
2456
|
-
[0, 0]
|
|
2457
|
-
];
|
|
2458
|
-
var PutLogEventsRequest$ = [3, n0, _PLER,
|
|
2459
|
-
0,
|
|
2460
|
-
[_lGN, _lSN, _lE, _sTe, _ent],
|
|
2461
|
-
[0, 0, () => InputLogEvents, 0, () => Entity$], 3
|
|
2462
|
-
];
|
|
2463
|
-
var PutLogEventsResponse$ = [3, n0, _PLERu,
|
|
2464
|
-
0,
|
|
2465
|
-
[_nST, _rLEI, _rEI],
|
|
2466
|
-
[0, () => RejectedLogEventsInfo$, () => RejectedEntityInfo$]
|
|
2467
|
-
];
|
|
2468
|
-
var PutLogGroupDeletionProtectionRequest$ = [3, n0, _PLGDPR,
|
|
2469
|
-
0,
|
|
2470
|
-
[_lGIo, _dPE],
|
|
2471
|
-
[0, 2], 2
|
|
2472
|
-
];
|
|
2473
|
-
var PutMetricFilterRequest$ = [3, n0, _PMFR,
|
|
2474
|
-
0,
|
|
2475
|
-
[_lGN, _fN, _fP, _mT, _aOTL, _fSC, _eSFD],
|
|
2476
|
-
[0, 0, 0, () => MetricTransformations, 2, 0, 64 | 0], 4
|
|
2477
|
-
];
|
|
2478
|
-
var PutQueryDefinitionRequest$ = [3, n0, _PQDR,
|
|
2479
|
-
0,
|
|
2480
|
-
[_n, _qS, _qL, _qDI, _lGNo, _cTl],
|
|
2481
|
-
[0, 0, 0, 0, 64 | 0, [0, 4]], 2
|
|
2482
|
-
];
|
|
2483
|
-
var PutQueryDefinitionResponse$ = [3, n0, _PQDRu,
|
|
2484
|
-
0,
|
|
2485
|
-
[_qDI],
|
|
2486
|
-
[0]
|
|
2487
|
-
];
|
|
2488
|
-
var PutResourcePolicyRequest$ = [3, n0, _PRPR,
|
|
2489
|
-
0,
|
|
2490
|
-
[_pN, _pD, _rA, _eRI],
|
|
2491
|
-
[0, 0, 0, 0]
|
|
2492
|
-
];
|
|
2493
|
-
var PutResourcePolicyResponse$ = [3, n0, _PRPRu,
|
|
2494
|
-
0,
|
|
2495
|
-
[_rPe, _rIev],
|
|
2496
|
-
[() => ResourcePolicy$, 0]
|
|
2497
|
-
];
|
|
2498
|
-
var PutRetentionPolicyRequest$ = [3, n0, _PRPRut,
|
|
2499
|
-
0,
|
|
2500
|
-
[_lGN, _rID],
|
|
2501
|
-
[0, 1], 2
|
|
2502
|
-
];
|
|
2503
|
-
var PutSubscriptionFilterRequest$ = [3, n0, _PSFR,
|
|
2504
|
-
0,
|
|
2505
|
-
[_lGN, _fN, _fP, _dA, _rAo, _dis, _aOTL, _fSC, _eSF],
|
|
2506
|
-
[0, 0, 0, 0, 0, 0, 2, 0, 64 | 0], 4
|
|
2507
|
-
];
|
|
2508
|
-
var PutTransformerRequest$ = [3, n0, _PTR,
|
|
2509
|
-
0,
|
|
2510
|
-
[_lGIo, _tC],
|
|
2511
|
-
[0, () => Processors], 2
|
|
2512
|
-
];
|
|
2513
|
-
var QueryCompileError$ = [3, n0, _QCE,
|
|
2514
|
-
0,
|
|
2515
|
-
[_lo, _m],
|
|
2516
|
-
[() => QueryCompileErrorLocation$, 0]
|
|
2517
|
-
];
|
|
2518
|
-
var QueryCompileErrorLocation$ = [3, n0, _QCEL,
|
|
2519
|
-
0,
|
|
2520
|
-
[_sCO, _eCO],
|
|
2521
|
-
[1, 1]
|
|
2522
|
-
];
|
|
2523
|
-
var QueryDefinition$ = [3, n0, _QD,
|
|
2524
|
-
0,
|
|
2525
|
-
[_qL, _qDI, _n, _qS, _lM, _lGNo],
|
|
2526
|
-
[0, 0, 0, 0, 1, 64 | 0]
|
|
2527
|
-
];
|
|
2528
|
-
var QueryInfo$ = [3, n0, _QI,
|
|
2529
|
-
0,
|
|
2530
|
-
[_qL, _qI, _qS, _sta, _cTr, _lGN],
|
|
2531
|
-
[0, 0, 0, 0, 1, 0]
|
|
2532
|
-
];
|
|
2533
|
-
var QueryStatistics$ = [3, n0, _QS,
|
|
2534
|
-
0,
|
|
2535
|
-
[_rM, _rS, _eRS, _bS, _eBS, _lGS],
|
|
2536
|
-
[1, 1, 1, 1, 1, 1]
|
|
2537
|
-
];
|
|
2538
|
-
var RecordField$ = [3, n0, _RF,
|
|
2539
|
-
0,
|
|
2540
|
-
[_n, _man],
|
|
2541
|
-
[0, 2]
|
|
2542
|
-
];
|
|
2543
|
-
var RejectedEntityInfo$ = [3, n0, _REI,
|
|
2544
|
-
0,
|
|
2545
|
-
[_eTr],
|
|
2546
|
-
[0], 1
|
|
2547
|
-
];
|
|
2548
|
-
var RejectedLogEventsInfo$ = [3, n0, _RLEI,
|
|
2549
|
-
0,
|
|
2550
|
-
[_tNLESI, _tOLEEI, _eLEEI],
|
|
2551
|
-
[1, 1, 1]
|
|
2552
|
-
];
|
|
2553
|
-
var RenameKeyEntry$ = [3, n0, _RKE,
|
|
2554
|
-
0,
|
|
2555
|
-
[_k, _rTen, _oIE],
|
|
2556
|
-
[0, 0, 2], 2
|
|
2557
|
-
];
|
|
2558
|
-
var RenameKeys$ = [3, n0, _RK,
|
|
2559
|
-
0,
|
|
2560
|
-
[_en],
|
|
2561
|
-
[() => RenameKeyEntries], 1
|
|
2562
|
-
];
|
|
2563
|
-
var ResourceAlreadyExistsException$ = [-3, n0, _RAEE,
|
|
2564
|
-
{ [_e]: _c },
|
|
2565
|
-
[_m],
|
|
2566
|
-
[0]
|
|
2567
|
-
];
|
|
2568
|
-
schema.TypeRegistry.for(n0).registerError(ResourceAlreadyExistsException$, ResourceAlreadyExistsException);
|
|
2569
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
2570
|
-
{ [_e]: _c },
|
|
2571
|
-
[_m],
|
|
2572
|
-
[0]
|
|
2573
|
-
];
|
|
2574
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
2575
|
-
var ResourcePolicy$ = [3, n0, _RP,
|
|
2576
|
-
0,
|
|
2577
|
-
[_pN, _pD, _lUT, _pSo, _rA, _rIev],
|
|
2578
|
-
[0, 0, 1, 0, 0, 0]
|
|
2579
|
-
];
|
|
2580
|
-
var ResultField$ = [3, n0, _RFe,
|
|
2581
|
-
0,
|
|
2582
|
-
[_fie, _v],
|
|
2583
|
-
[0, 0]
|
|
2584
|
-
];
|
|
2585
|
-
var S3Configuration$ = [3, n0, _SC,
|
|
2586
|
-
0,
|
|
2587
|
-
[_dI, _rAo],
|
|
2588
|
-
[0, 0], 2
|
|
2589
|
-
];
|
|
2590
|
-
var S3DeliveryConfiguration$ = [3, n0, _SDC,
|
|
2591
|
-
0,
|
|
2592
|
-
[_sP, _eHCP],
|
|
2593
|
-
[0, 2]
|
|
2594
|
-
];
|
|
2595
|
-
var S3TableIntegrationSource$ = [3, n0, _STIS,
|
|
2596
|
-
0,
|
|
2597
|
-
[_i, _dS, _sta, _sRt, _cTSr],
|
|
2598
|
-
[0, () => DataSource$, 0, 0, 1]
|
|
2599
|
-
];
|
|
2600
|
-
var ScheduledQueryDestination$ = [3, n0, _SQD,
|
|
2601
|
-
0,
|
|
2602
|
-
[_dT, _dI, _sta, _pIr, _eM],
|
|
2603
|
-
[0, 0, 0, 0, 0]
|
|
2604
|
-
];
|
|
2605
|
-
var ScheduledQuerySummary$ = [3, n0, _SQS,
|
|
2606
|
-
0,
|
|
2607
|
-
[_sQA, _n, _st, _lTT, _lES, _sE, _ti, _dC, _cT, _lUT],
|
|
2608
|
-
[0, 0, 0, 1, 0, 0, 0, () => DestinationConfiguration$, 1, 1]
|
|
2609
|
-
];
|
|
2610
|
-
var SearchedLogStream$ = [3, n0, _SLS,
|
|
2611
|
-
0,
|
|
2612
|
-
[_lSN, _sCe],
|
|
2613
|
-
[0, 2]
|
|
2614
|
-
];
|
|
2615
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
2616
|
-
{ [_e]: _c },
|
|
2617
|
-
[_m],
|
|
2618
|
-
[0]
|
|
2619
|
-
];
|
|
2620
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
2621
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
2622
|
-
{ [_e]: _ser },
|
|
2623
|
-
[_m],
|
|
2624
|
-
[0]
|
|
2625
|
-
];
|
|
2626
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
2627
|
-
var SessionStreamingException$ = [-3, n0, _SSE,
|
|
2628
|
-
{ [_e]: _c },
|
|
2629
|
-
[_m],
|
|
2630
|
-
[0]
|
|
2631
|
-
];
|
|
2632
|
-
schema.TypeRegistry.for(n0).registerError(SessionStreamingException$, SessionStreamingException);
|
|
2633
|
-
var SessionTimeoutException$ = [-3, n0, _STE,
|
|
2634
|
-
{ [_e]: _c },
|
|
2635
|
-
[_m],
|
|
2636
|
-
[0]
|
|
2637
|
-
];
|
|
2638
|
-
schema.TypeRegistry.for(n0).registerError(SessionTimeoutException$, SessionTimeoutException);
|
|
2639
|
-
var SplitString$ = [3, n0, _SS,
|
|
2640
|
-
0,
|
|
2641
|
-
[_en],
|
|
2642
|
-
[() => SplitStringEntries], 1
|
|
2643
|
-
];
|
|
2644
|
-
var SplitStringEntry$ = [3, n0, _SSEp,
|
|
2645
|
-
0,
|
|
2646
|
-
[_so, _del],
|
|
2647
|
-
[0, 0], 2
|
|
2648
|
-
];
|
|
2649
|
-
var StartLiveTailRequest$ = [3, n0, _SLTR,
|
|
2650
|
-
0,
|
|
2651
|
-
[_lGI, _lSNo, _lSNPo, _lEFP],
|
|
2652
|
-
[64 | 0, 64 | 0, 64 | 0, 0], 1
|
|
2653
|
-
];
|
|
2654
|
-
var StartLiveTailResponse$ = [3, n0, _SLTRt,
|
|
2655
|
-
0,
|
|
2656
|
-
[_rSe],
|
|
2657
|
-
[[() => StartLiveTailResponseStream$, 0]]
|
|
2658
|
-
];
|
|
2659
|
-
var StartQueryRequest$ = [3, n0, _SQR,
|
|
2660
|
-
0,
|
|
2661
|
-
[_sTt, _eTn, _qS, _qL, _lGN, _lGNo, _lGI, _li],
|
|
2662
|
-
[1, 1, 0, 0, 0, 64 | 0, 64 | 0, 1], 3
|
|
2663
|
-
];
|
|
2664
|
-
var StartQueryResponse$ = [3, n0, _SQRt,
|
|
2665
|
-
0,
|
|
2666
|
-
[_qI],
|
|
2667
|
-
[0]
|
|
2668
|
-
];
|
|
2669
|
-
var StopQueryRequest$ = [3, n0, _SQRto,
|
|
2670
|
-
0,
|
|
2671
|
-
[_qI],
|
|
2672
|
-
[0], 1
|
|
2673
|
-
];
|
|
2674
|
-
var StopQueryResponse$ = [3, n0, _SQRtop,
|
|
2675
|
-
0,
|
|
2676
|
-
[_suc],
|
|
2677
|
-
[2]
|
|
2678
|
-
];
|
|
2679
|
-
var SubscriptionFilter$ = [3, n0, _SF,
|
|
2680
|
-
0,
|
|
2681
|
-
[_fN, _lGN, _fP, _dA, _rAo, _dis, _aOTL, _cT, _fSC, _eSF],
|
|
2682
|
-
[0, 0, 0, 0, 0, 0, 2, 1, 0, 64 | 0]
|
|
2683
|
-
];
|
|
2684
|
-
var SubstituteString$ = [3, n0, _SSu,
|
|
2685
|
-
0,
|
|
2686
|
-
[_en],
|
|
2687
|
-
[() => SubstituteStringEntries], 1
|
|
2688
|
-
];
|
|
2689
|
-
var SubstituteStringEntry$ = [3, n0, _SSEu,
|
|
2690
|
-
0,
|
|
2691
|
-
[_so, _f, _to],
|
|
2692
|
-
[0, 0, 0], 3
|
|
2693
|
-
];
|
|
2694
|
-
var SuppressionPeriod$ = [3, n0, _SP,
|
|
2695
|
-
0,
|
|
2696
|
-
[_v, _sUu],
|
|
2697
|
-
[1, 0]
|
|
2698
|
-
];
|
|
2699
|
-
var TagLogGroupRequest$ = [3, n0, _TLGR,
|
|
2700
|
-
0,
|
|
2701
|
-
[_lGN, _ta],
|
|
2702
|
-
[0, 128 | 0], 2
|
|
2703
|
-
];
|
|
2704
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
2705
|
-
0,
|
|
2706
|
-
[_rA, _ta],
|
|
2707
|
-
[0, 128 | 0], 2
|
|
2708
|
-
];
|
|
2709
|
-
var TestMetricFilterRequest$ = [3, n0, _TMFR,
|
|
2710
|
-
0,
|
|
2711
|
-
[_fP, _lEM],
|
|
2712
|
-
[0, 64 | 0], 2
|
|
2713
|
-
];
|
|
2714
|
-
var TestMetricFilterResponse$ = [3, n0, _TMFRe,
|
|
2715
|
-
0,
|
|
2716
|
-
[_mat],
|
|
2717
|
-
[() => MetricFilterMatches]
|
|
2718
|
-
];
|
|
2719
|
-
var TestTransformerRequest$ = [3, n0, _TTR,
|
|
2720
|
-
0,
|
|
2721
|
-
[_tC, _lEM],
|
|
2722
|
-
[() => Processors, 64 | 0], 2
|
|
2723
|
-
];
|
|
2724
|
-
var TestTransformerResponse$ = [3, n0, _TTRe,
|
|
2725
|
-
0,
|
|
2726
|
-
[_tL],
|
|
2727
|
-
[() => TransformedLogs]
|
|
2728
|
-
];
|
|
2729
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
2730
|
-
{ [_e]: _c },
|
|
2731
|
-
[_m],
|
|
2732
|
-
[0]
|
|
2733
|
-
];
|
|
2734
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
2735
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
2736
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
2737
|
-
[_m, _rN],
|
|
2738
|
-
[0, 0]
|
|
2739
|
-
];
|
|
2740
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
2741
|
-
var TransformedLogRecord$ = [3, n0, _TLR,
|
|
2742
|
-
0,
|
|
2743
|
-
[_eN, _eMv, _tEM],
|
|
2744
|
-
[1, 0, 0]
|
|
2745
|
-
];
|
|
2746
|
-
var TriggerHistoryRecord$ = [3, n0, _THR,
|
|
2747
|
-
0,
|
|
2748
|
-
[_qI, _eSx, _tTr, _eM, _dest],
|
|
2749
|
-
[0, 0, 1, 0, () => ScheduledQueryDestinationList]
|
|
2750
|
-
];
|
|
2751
|
-
var TrimString$ = [3, n0, _TS,
|
|
2752
|
-
0,
|
|
2753
|
-
[_wK],
|
|
2754
|
-
[64 | 0], 1
|
|
2755
|
-
];
|
|
2756
|
-
var TypeConverter$ = [3, n0, _TC,
|
|
2757
|
-
0,
|
|
2758
|
-
[_en],
|
|
2759
|
-
[() => TypeConverterEntries], 1
|
|
2760
|
-
];
|
|
2761
|
-
var TypeConverterEntry$ = [3, n0, _TCE,
|
|
2762
|
-
0,
|
|
2763
|
-
[_k, _ty],
|
|
2764
|
-
[0, 0], 2
|
|
2765
|
-
];
|
|
2766
|
-
var UnrecognizedClientException$ = [-3, n0, _UCE,
|
|
2767
|
-
{ [_e]: _c },
|
|
2768
|
-
[_m],
|
|
2769
|
-
[0]
|
|
2770
|
-
];
|
|
2771
|
-
schema.TypeRegistry.for(n0).registerError(UnrecognizedClientException$, UnrecognizedClientException);
|
|
2772
|
-
var UntagLogGroupRequest$ = [3, n0, _ULGR,
|
|
2773
|
-
0,
|
|
2774
|
-
[_lGN, _ta],
|
|
2775
|
-
[0, 64 | 0], 2
|
|
2776
|
-
];
|
|
2777
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
2778
|
-
0,
|
|
2779
|
-
[_rA, _tK],
|
|
2780
|
-
[0, 64 | 0], 2
|
|
2781
|
-
];
|
|
2782
|
-
var UpdateAnomalyRequest$ = [3, n0, _UAR,
|
|
2783
|
-
0,
|
|
2784
|
-
[_aDA, _aIn, _pI, _sTu, _sPu, _b],
|
|
2785
|
-
[0, 0, 0, 0, () => SuppressionPeriod$, 2], 1
|
|
2786
|
-
];
|
|
2787
|
-
var UpdateDeliveryConfigurationRequest$ = [3, n0, _UDCR,
|
|
2788
|
-
0,
|
|
2789
|
-
[_id, _rF, _fD, _sDC],
|
|
2790
|
-
[0, 64 | 0, 0, () => S3DeliveryConfiguration$], 1
|
|
2791
|
-
];
|
|
2792
|
-
var UpdateDeliveryConfigurationResponse$ = [3, n0, _UDCRp,
|
|
2793
|
-
0,
|
|
2794
|
-
[],
|
|
2795
|
-
[]
|
|
2796
|
-
];
|
|
2797
|
-
var UpdateLogAnomalyDetectorRequest$ = [3, n0, _ULADR,
|
|
2798
|
-
0,
|
|
2799
|
-
[_aDA, _ena, _eF, _fP, _aVT],
|
|
2800
|
-
[0, 2, 0, 0, 1], 2
|
|
2801
|
-
];
|
|
2802
|
-
var UpdateScheduledQueryRequest$ = [3, n0, _USQR,
|
|
2803
|
-
0,
|
|
2804
|
-
[_i, _qL, _qS, _sE, _eRA, _d, _lGI, _ti, _sTO, _dC, _sST, _sET, _st],
|
|
2805
|
-
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 1, () => DestinationConfiguration$, 1, 1, 0], 5
|
|
2806
|
-
];
|
|
2807
|
-
var UpdateScheduledQueryResponse$ = [3, n0, _USQRp,
|
|
2808
|
-
0,
|
|
2809
|
-
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA, _cT, _lUT],
|
|
2810
|
-
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 1, () => DestinationConfiguration$, 0, 1, 0, 1, 1, 0, 1, 1]
|
|
2811
|
-
];
|
|
2812
|
-
var UpperCaseString$ = [3, n0, _UCS,
|
|
2813
|
-
0,
|
|
2814
|
-
[_wK],
|
|
2815
|
-
[64 | 0], 1
|
|
2816
|
-
];
|
|
2817
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
2818
|
-
{ [_e]: _c },
|
|
2819
|
-
[_m],
|
|
2820
|
-
[0]
|
|
2821
|
-
];
|
|
2822
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
2823
|
-
var __Unit = "unit";
|
|
2824
|
-
var CloudWatchLogsServiceException$ = [-3, _sm, "CloudWatchLogsServiceException", 0, [], []];
|
|
2825
|
-
schema.TypeRegistry.for(_sm).registerError(CloudWatchLogsServiceException$, CloudWatchLogsServiceException);
|
|
2826
|
-
var AccountPolicies = [1, n0, _APc,
|
|
2827
|
-
0, () => AccountPolicy$
|
|
2828
|
-
];
|
|
2829
|
-
var AddKeyEntries = [1, n0, _AKEd,
|
|
2830
|
-
0, () => AddKeyEntry$
|
|
2831
|
-
];
|
|
2832
|
-
var AggregateLogGroupSummaries = [1, n0, _ALGSg,
|
|
2833
|
-
0, () => AggregateLogGroupSummary$
|
|
2834
|
-
];
|
|
2835
|
-
var AllowedFields = [1, n0, _AF,
|
|
2836
|
-
0, () => RecordField$
|
|
2837
|
-
];
|
|
2838
|
-
var Anomalies = [1, n0, _An,
|
|
2839
|
-
0, () => Anomaly$
|
|
2840
|
-
];
|
|
2841
|
-
var AnomalyDetectors = [1, n0, _ADn,
|
|
2842
|
-
0, () => AnomalyDetector$
|
|
2843
|
-
];
|
|
2844
|
-
var ConfigurationTemplates = [1, n0, _CTo,
|
|
2845
|
-
0, () => ConfigurationTemplate$
|
|
2846
|
-
];
|
|
2847
|
-
var CopyValueEntries = [1, n0, _CVEo,
|
|
2848
|
-
0, () => CopyValueEntry$
|
|
2849
|
-
];
|
|
2850
|
-
var DataSourceFilters = [1, n0, _DSFa,
|
|
2851
|
-
0, () => DataSourceFilter$
|
|
2852
|
-
];
|
|
2853
|
-
var Deliveries = [1, n0, _Del,
|
|
2854
|
-
0, () => Delivery$
|
|
2855
|
-
];
|
|
2856
|
-
var DeliveryDestinations = [1, n0, _DDe,
|
|
2857
|
-
0, () => DeliveryDestination$
|
|
2858
|
-
];
|
|
2859
|
-
var DeliverySources = [1, n0, _DSel,
|
|
2860
|
-
0, () => DeliverySource$
|
|
2861
|
-
];
|
|
2862
|
-
var Destinations = [1, n0, _Des,
|
|
2863
|
-
0, () => Destination$
|
|
2864
|
-
];
|
|
2865
|
-
var ExportTasks = [1, n0, _ETx,
|
|
2866
|
-
0, () => ExportTask$
|
|
2867
|
-
];
|
|
2868
|
-
var FieldIndexes = [1, n0, _FIi,
|
|
2869
|
-
0, () => FieldIndex$
|
|
2870
|
-
];
|
|
2871
|
-
var FilteredLogEvents = [1, n0, _FLEi,
|
|
2872
|
-
0, () => FilteredLogEvent$
|
|
2873
|
-
];
|
|
2874
|
-
var GroupingIdentifiers = [1, n0, _GIr,
|
|
2875
|
-
0, () => GroupingIdentifier$
|
|
2876
|
-
];
|
|
2877
|
-
var ImportBatchList = [1, n0, _IBL,
|
|
2878
|
-
0, () => ImportBatch$
|
|
2879
|
-
];
|
|
2880
|
-
var ImportList = [1, n0, _IL,
|
|
2881
|
-
0, () => Import$
|
|
2882
|
-
];
|
|
2883
|
-
var IndexPolicies = [1, n0, _IPn,
|
|
2884
|
-
0, () => IndexPolicy$
|
|
2885
|
-
];
|
|
2886
|
-
var InputLogEvents = [1, n0, _ILEn,
|
|
2887
|
-
0, () => InputLogEvent$
|
|
2888
|
-
];
|
|
2889
|
-
var IntegrationSummaries = [1, n0, _ISnt,
|
|
2890
|
-
0, () => IntegrationSummary$
|
|
2891
|
-
];
|
|
2892
|
-
var LiveTailSessionResults = [1, n0, _LTSR,
|
|
2893
|
-
0, () => LiveTailSessionLogEvent$
|
|
2894
|
-
];
|
|
2895
|
-
var LogFieldsList = [1, n0, _LFL,
|
|
2896
|
-
0, () => LogFieldsListItem$
|
|
2897
|
-
];
|
|
2898
|
-
var LogGroupFieldList = [1, n0, _LGFL,
|
|
2899
|
-
0, () => LogGroupField$
|
|
2900
|
-
];
|
|
2901
|
-
var LogGroups = [1, n0, _LGo,
|
|
2902
|
-
0, () => LogGroup$
|
|
2903
|
-
];
|
|
2904
|
-
var LogGroupSummaries = [1, n0, _LGSo,
|
|
2905
|
-
0, () => LogGroupSummary$
|
|
2906
|
-
];
|
|
2907
|
-
var LogSamples = [1, n0, _LSo,
|
|
2908
|
-
0, () => LogEvent$
|
|
2909
|
-
];
|
|
2910
|
-
var LogStreams = [1, n0, _LSog,
|
|
2911
|
-
0, () => LogStream$
|
|
2912
|
-
];
|
|
2913
|
-
var MetricFilterMatches = [1, n0, _MFM,
|
|
2914
|
-
0, () => MetricFilterMatchRecord$
|
|
2915
|
-
];
|
|
2916
|
-
var MetricFilters = [1, n0, _MFe,
|
|
2917
|
-
0, () => MetricFilter$
|
|
2918
|
-
];
|
|
2919
|
-
var MetricTransformations = [1, n0, _MTe,
|
|
2920
|
-
0, () => MetricTransformation$
|
|
2921
|
-
];
|
|
2922
|
-
var MoveKeyEntries = [1, n0, _MKEo,
|
|
2923
|
-
0, () => MoveKeyEntry$
|
|
2924
|
-
];
|
|
2925
|
-
var OutputLogEvents = [1, n0, _OLEu,
|
|
2926
|
-
0, () => OutputLogEvent$
|
|
2927
|
-
];
|
|
2928
|
-
var PatternTokens = [1, n0, _PTa,
|
|
2929
|
-
0, () => PatternToken$
|
|
2930
|
-
];
|
|
2931
|
-
var Processors = [1, n0, _Pro,
|
|
2932
|
-
0, () => Processor$
|
|
2933
|
-
];
|
|
2934
|
-
var QueryDefinitionList = [1, n0, _QDL,
|
|
2935
|
-
0, () => QueryDefinition$
|
|
2936
|
-
];
|
|
2937
|
-
var QueryInfoList = [1, n0, _QIL,
|
|
2938
|
-
0, () => QueryInfo$
|
|
2939
|
-
];
|
|
2940
|
-
var QueryResults = [1, n0, _QR,
|
|
2941
|
-
0, () => ResultRows
|
|
2942
|
-
];
|
|
2943
|
-
var RenameKeyEntries = [1, n0, _RKEe,
|
|
2944
|
-
0, () => RenameKeyEntry$
|
|
2945
|
-
];
|
|
2946
|
-
var ResourcePolicies = [1, n0, _RPe,
|
|
2947
|
-
0, () => ResourcePolicy$
|
|
2948
|
-
];
|
|
2949
|
-
var ResultRows = [1, n0, _RR,
|
|
2950
|
-
0, () => ResultField$
|
|
2951
|
-
];
|
|
2952
|
-
var S3TableIntegrationSources = [1, n0, _STISa,
|
|
2953
|
-
0, () => S3TableIntegrationSource$
|
|
2954
|
-
];
|
|
2955
|
-
var ScheduledQueryDestinationList = [1, n0, _SQDL,
|
|
2956
|
-
0, () => ScheduledQueryDestination$
|
|
2957
|
-
];
|
|
2958
|
-
var ScheduledQuerySummaryList = [1, n0, _SQSL,
|
|
2959
|
-
0, () => ScheduledQuerySummary$
|
|
2960
|
-
];
|
|
2961
|
-
var SearchedLogStreams = [1, n0, _SLSe,
|
|
2962
|
-
0, () => SearchedLogStream$
|
|
2963
|
-
];
|
|
2964
|
-
var SplitStringEntries = [1, n0, _SSEpl,
|
|
2965
|
-
0, () => SplitStringEntry$
|
|
2966
|
-
];
|
|
2967
|
-
var SubscriptionFilters = [1, n0, _SFu,
|
|
2968
|
-
0, () => SubscriptionFilter$
|
|
2969
|
-
];
|
|
2970
|
-
var SubstituteStringEntries = [1, n0, _SSEub,
|
|
2971
|
-
0, () => SubstituteStringEntry$
|
|
2972
|
-
];
|
|
2973
|
-
var TransformedLogs = [1, n0, _TL,
|
|
2974
|
-
0, () => TransformedLogRecord$
|
|
2975
|
-
];
|
|
2976
|
-
var TriggerHistoryRecordList = [1, n0, _THRL,
|
|
2977
|
-
0, () => TriggerHistoryRecord$
|
|
2978
|
-
];
|
|
2979
|
-
var TypeConverterEntries = [1, n0, _TCEy,
|
|
2980
|
-
0, () => TypeConverterEntry$
|
|
2981
|
-
];
|
|
2982
|
-
var GetLogObjectResponseStream$ = [4, n0, _GLORS,
|
|
2983
|
-
{ [_str]: 1 },
|
|
2984
|
-
[_fi, _ISEn],
|
|
2985
|
-
[() => FieldsData$, [() => InternalStreamingException$, 0]]
|
|
2986
|
-
];
|
|
2987
|
-
var IntegrationDetails$ = [4, n0, _ID,
|
|
2988
|
-
0,
|
|
2989
|
-
[_oSID],
|
|
2990
|
-
[() => OpenSearchIntegrationDetails$]
|
|
2991
|
-
];
|
|
2992
|
-
var ResourceConfig$ = [4, n0, _RC,
|
|
2993
|
-
0,
|
|
2994
|
-
[_oSRC],
|
|
2995
|
-
[() => OpenSearchResourceConfig$]
|
|
2996
|
-
];
|
|
2997
|
-
var StartLiveTailResponseStream$ = [4, n0, _SLTRS,
|
|
2998
|
-
{ [_str]: 1 },
|
|
2999
|
-
[_sSe, _sUe, _STE, _SSE],
|
|
3000
|
-
[() => LiveTailSessionStart$, () => LiveTailSessionUpdate$, [() => SessionTimeoutException$, 0], [() => SessionStreamingException$, 0]]
|
|
3001
|
-
];
|
|
3002
|
-
var AssociateKmsKey$ = [9, n0, _AKK,
|
|
3003
|
-
0, () => AssociateKmsKeyRequest$, () => __Unit
|
|
3004
|
-
];
|
|
3005
|
-
var AssociateSourceToS3TableIntegration$ = [9, n0, _ASTSTI,
|
|
3006
|
-
0, () => AssociateSourceToS3TableIntegrationRequest$, () => AssociateSourceToS3TableIntegrationResponse$
|
|
3007
|
-
];
|
|
3008
|
-
var CancelExportTask$ = [9, n0, _CET,
|
|
3009
|
-
0, () => CancelExportTaskRequest$, () => __Unit
|
|
3010
|
-
];
|
|
3011
|
-
var CancelImportTask$ = [9, n0, _CIT,
|
|
3012
|
-
0, () => CancelImportTaskRequest$, () => CancelImportTaskResponse$
|
|
3013
|
-
];
|
|
3014
|
-
var CreateDelivery$ = [9, n0, _CD,
|
|
3015
|
-
0, () => CreateDeliveryRequest$, () => CreateDeliveryResponse$
|
|
3016
|
-
];
|
|
3017
|
-
var CreateExportTask$ = [9, n0, _CETr,
|
|
3018
|
-
0, () => CreateExportTaskRequest$, () => CreateExportTaskResponse$
|
|
3019
|
-
];
|
|
3020
|
-
var CreateImportTask$ = [9, n0, _CITr,
|
|
3021
|
-
0, () => CreateImportTaskRequest$, () => CreateImportTaskResponse$
|
|
3022
|
-
];
|
|
3023
|
-
var CreateLogAnomalyDetector$ = [9, n0, _CLAD,
|
|
3024
|
-
0, () => CreateLogAnomalyDetectorRequest$, () => CreateLogAnomalyDetectorResponse$
|
|
3025
|
-
];
|
|
3026
|
-
var CreateLogGroup$ = [9, n0, _CLG,
|
|
3027
|
-
0, () => CreateLogGroupRequest$, () => __Unit
|
|
3028
|
-
];
|
|
3029
|
-
var CreateLogStream$ = [9, n0, _CLS,
|
|
3030
|
-
0, () => CreateLogStreamRequest$, () => __Unit
|
|
3031
|
-
];
|
|
3032
|
-
var CreateScheduledQuery$ = [9, n0, _CSQ,
|
|
3033
|
-
0, () => CreateScheduledQueryRequest$, () => CreateScheduledQueryResponse$
|
|
3034
|
-
];
|
|
3035
|
-
var DeleteAccountPolicy$ = [9, n0, _DAP,
|
|
3036
|
-
0, () => DeleteAccountPolicyRequest$, () => __Unit
|
|
3037
|
-
];
|
|
3038
|
-
var DeleteDataProtectionPolicy$ = [9, n0, _DDPP,
|
|
3039
|
-
0, () => DeleteDataProtectionPolicyRequest$, () => __Unit
|
|
3040
|
-
];
|
|
3041
|
-
var DeleteDelivery$ = [9, n0, _DDel,
|
|
3042
|
-
0, () => DeleteDeliveryRequest$, () => __Unit
|
|
3043
|
-
];
|
|
3044
|
-
var DeleteDeliveryDestination$ = [9, n0, _DDD,
|
|
3045
|
-
0, () => DeleteDeliveryDestinationRequest$, () => __Unit
|
|
3046
|
-
];
|
|
3047
|
-
var DeleteDeliveryDestinationPolicy$ = [9, n0, _DDDP,
|
|
3048
|
-
0, () => DeleteDeliveryDestinationPolicyRequest$, () => __Unit
|
|
3049
|
-
];
|
|
3050
|
-
var DeleteDeliverySource$ = [9, n0, _DDS,
|
|
3051
|
-
0, () => DeleteDeliverySourceRequest$, () => __Unit
|
|
3052
|
-
];
|
|
3053
|
-
var DeleteDestination$ = [9, n0, _DDele,
|
|
3054
|
-
0, () => DeleteDestinationRequest$, () => __Unit
|
|
3055
|
-
];
|
|
3056
|
-
var DeleteIndexPolicy$ = [9, n0, _DIP,
|
|
3057
|
-
0, () => DeleteIndexPolicyRequest$, () => DeleteIndexPolicyResponse$
|
|
3058
|
-
];
|
|
3059
|
-
var DeleteIntegration$ = [9, n0, _DI,
|
|
3060
|
-
0, () => DeleteIntegrationRequest$, () => DeleteIntegrationResponse$
|
|
3061
|
-
];
|
|
3062
|
-
var DeleteLogAnomalyDetector$ = [9, n0, _DLAD,
|
|
3063
|
-
0, () => DeleteLogAnomalyDetectorRequest$, () => __Unit
|
|
3064
|
-
];
|
|
3065
|
-
var DeleteLogGroup$ = [9, n0, _DLG,
|
|
3066
|
-
0, () => DeleteLogGroupRequest$, () => __Unit
|
|
3067
|
-
];
|
|
3068
|
-
var DeleteLogStream$ = [9, n0, _DLS,
|
|
3069
|
-
0, () => DeleteLogStreamRequest$, () => __Unit
|
|
3070
|
-
];
|
|
3071
|
-
var DeleteMetricFilter$ = [9, n0, _DMF,
|
|
3072
|
-
0, () => DeleteMetricFilterRequest$, () => __Unit
|
|
3073
|
-
];
|
|
3074
|
-
var DeleteQueryDefinition$ = [9, n0, _DQD,
|
|
3075
|
-
0, () => DeleteQueryDefinitionRequest$, () => DeleteQueryDefinitionResponse$
|
|
3076
|
-
];
|
|
3077
|
-
var DeleteResourcePolicy$ = [9, n0, _DRP,
|
|
3078
|
-
0, () => DeleteResourcePolicyRequest$, () => __Unit
|
|
3079
|
-
];
|
|
3080
|
-
var DeleteRetentionPolicy$ = [9, n0, _DRPe,
|
|
3081
|
-
0, () => DeleteRetentionPolicyRequest$, () => __Unit
|
|
3082
|
-
];
|
|
3083
|
-
var DeleteScheduledQuery$ = [9, n0, _DSQ,
|
|
3084
|
-
0, () => DeleteScheduledQueryRequest$, () => DeleteScheduledQueryResponse$
|
|
3085
|
-
];
|
|
3086
|
-
var DeleteSubscriptionFilter$ = [9, n0, _DSFe,
|
|
3087
|
-
0, () => DeleteSubscriptionFilterRequest$, () => __Unit
|
|
3088
|
-
];
|
|
3089
|
-
var DeleteTransformer$ = [9, n0, _DT,
|
|
3090
|
-
0, () => DeleteTransformerRequest$, () => __Unit
|
|
3091
|
-
];
|
|
3092
|
-
var DescribeAccountPolicies$ = [9, n0, _DAPe,
|
|
3093
|
-
0, () => DescribeAccountPoliciesRequest$, () => DescribeAccountPoliciesResponse$
|
|
3094
|
-
];
|
|
3095
|
-
var DescribeConfigurationTemplates$ = [9, n0, _DCT,
|
|
3096
|
-
0, () => DescribeConfigurationTemplatesRequest$, () => DescribeConfigurationTemplatesResponse$
|
|
3097
|
-
];
|
|
3098
|
-
var DescribeDeliveries$ = [9, n0, _DDes,
|
|
3099
|
-
0, () => DescribeDeliveriesRequest$, () => DescribeDeliveriesResponse$
|
|
3100
|
-
];
|
|
3101
|
-
var DescribeDeliveryDestinations$ = [9, n0, _DDDe,
|
|
3102
|
-
0, () => DescribeDeliveryDestinationsRequest$, () => DescribeDeliveryDestinationsResponse$
|
|
3103
|
-
];
|
|
3104
|
-
var DescribeDeliverySources$ = [9, n0, _DDSe,
|
|
3105
|
-
0, () => DescribeDeliverySourcesRequest$, () => DescribeDeliverySourcesResponse$
|
|
3106
|
-
];
|
|
3107
|
-
var DescribeDestinations$ = [9, n0, _DDesc,
|
|
3108
|
-
0, () => DescribeDestinationsRequest$, () => DescribeDestinationsResponse$
|
|
3109
|
-
];
|
|
3110
|
-
var DescribeExportTasks$ = [9, n0, _DET,
|
|
3111
|
-
0, () => DescribeExportTasksRequest$, () => DescribeExportTasksResponse$
|
|
3112
|
-
];
|
|
3113
|
-
var DescribeFieldIndexes$ = [9, n0, _DFI,
|
|
3114
|
-
0, () => DescribeFieldIndexesRequest$, () => DescribeFieldIndexesResponse$
|
|
3115
|
-
];
|
|
3116
|
-
var DescribeImportTaskBatches$ = [9, n0, _DITB,
|
|
3117
|
-
0, () => DescribeImportTaskBatchesRequest$, () => DescribeImportTaskBatchesResponse$
|
|
3118
|
-
];
|
|
3119
|
-
var DescribeImportTasks$ = [9, n0, _DIT,
|
|
3120
|
-
0, () => DescribeImportTasksRequest$, () => DescribeImportTasksResponse$
|
|
3121
|
-
];
|
|
3122
|
-
var DescribeIndexPolicies$ = [9, n0, _DIPe,
|
|
3123
|
-
0, () => DescribeIndexPoliciesRequest$, () => DescribeIndexPoliciesResponse$
|
|
3124
|
-
];
|
|
3125
|
-
var DescribeLogGroups$ = [9, n0, _DLGe,
|
|
3126
|
-
0, () => DescribeLogGroupsRequest$, () => DescribeLogGroupsResponse$
|
|
3127
|
-
];
|
|
3128
|
-
var DescribeLogStreams$ = [9, n0, _DLSe,
|
|
3129
|
-
0, () => DescribeLogStreamsRequest$, () => DescribeLogStreamsResponse$
|
|
3130
|
-
];
|
|
3131
|
-
var DescribeMetricFilters$ = [9, n0, _DMFe,
|
|
3132
|
-
0, () => DescribeMetricFiltersRequest$, () => DescribeMetricFiltersResponse$
|
|
3133
|
-
];
|
|
3134
|
-
var DescribeQueries$ = [9, n0, _DQ,
|
|
3135
|
-
0, () => DescribeQueriesRequest$, () => DescribeQueriesResponse$
|
|
3136
|
-
];
|
|
3137
|
-
var DescribeQueryDefinitions$ = [9, n0, _DQDe,
|
|
3138
|
-
0, () => DescribeQueryDefinitionsRequest$, () => DescribeQueryDefinitionsResponse$
|
|
3139
|
-
];
|
|
3140
|
-
var DescribeResourcePolicies$ = [9, n0, _DRPes,
|
|
3141
|
-
0, () => DescribeResourcePoliciesRequest$, () => DescribeResourcePoliciesResponse$
|
|
3142
|
-
];
|
|
3143
|
-
var DescribeSubscriptionFilters$ = [9, n0, _DSFes,
|
|
3144
|
-
0, () => DescribeSubscriptionFiltersRequest$, () => DescribeSubscriptionFiltersResponse$
|
|
3145
|
-
];
|
|
3146
|
-
var DisassociateKmsKey$ = [9, n0, _DKK,
|
|
3147
|
-
0, () => DisassociateKmsKeyRequest$, () => __Unit
|
|
3148
|
-
];
|
|
3149
|
-
var DisassociateSourceFromS3TableIntegration$ = [9, n0, _DSFSTI,
|
|
3150
|
-
0, () => DisassociateSourceFromS3TableIntegrationRequest$, () => DisassociateSourceFromS3TableIntegrationResponse$
|
|
3151
|
-
];
|
|
3152
|
-
var FilterLogEvents$ = [9, n0, _FLEil,
|
|
3153
|
-
0, () => FilterLogEventsRequest$, () => FilterLogEventsResponse$
|
|
3154
|
-
];
|
|
3155
|
-
var GetDataProtectionPolicy$ = [9, n0, _GDPP,
|
|
3156
|
-
0, () => GetDataProtectionPolicyRequest$, () => GetDataProtectionPolicyResponse$
|
|
3157
|
-
];
|
|
3158
|
-
var GetDelivery$ = [9, n0, _GD,
|
|
3159
|
-
0, () => GetDeliveryRequest$, () => GetDeliveryResponse$
|
|
3160
|
-
];
|
|
3161
|
-
var GetDeliveryDestination$ = [9, n0, _GDD,
|
|
3162
|
-
0, () => GetDeliveryDestinationRequest$, () => GetDeliveryDestinationResponse$
|
|
3163
|
-
];
|
|
3164
|
-
var GetDeliveryDestinationPolicy$ = [9, n0, _GDDP,
|
|
3165
|
-
0, () => GetDeliveryDestinationPolicyRequest$, () => GetDeliveryDestinationPolicyResponse$
|
|
3166
|
-
];
|
|
3167
|
-
var GetDeliverySource$ = [9, n0, _GDS,
|
|
3168
|
-
0, () => GetDeliverySourceRequest$, () => GetDeliverySourceResponse$
|
|
3169
|
-
];
|
|
3170
|
-
var GetIntegration$ = [9, n0, _GIe,
|
|
3171
|
-
0, () => GetIntegrationRequest$, () => GetIntegrationResponse$
|
|
3172
|
-
];
|
|
3173
|
-
var GetLogAnomalyDetector$ = [9, n0, _GLAD,
|
|
3174
|
-
0, () => GetLogAnomalyDetectorRequest$, () => GetLogAnomalyDetectorResponse$
|
|
3175
|
-
];
|
|
3176
|
-
var GetLogEvents$ = [9, n0, _GLE,
|
|
3177
|
-
0, () => GetLogEventsRequest$, () => GetLogEventsResponse$
|
|
3178
|
-
];
|
|
3179
|
-
var GetLogFields$ = [9, n0, _GLF,
|
|
3180
|
-
0, () => GetLogFieldsRequest$, () => GetLogFieldsResponse$
|
|
3181
|
-
];
|
|
3182
|
-
var GetLogGroupFields$ = [9, n0, _GLGF,
|
|
3183
|
-
0, () => GetLogGroupFieldsRequest$, () => GetLogGroupFieldsResponse$
|
|
3184
|
-
];
|
|
3185
|
-
var GetLogObject$ = [9, n0, _GLO,
|
|
3186
|
-
{ [_end]: ["streaming-"] }, () => GetLogObjectRequest$, () => GetLogObjectResponse$
|
|
3187
|
-
];
|
|
3188
|
-
var GetLogRecord$ = [9, n0, _GLR,
|
|
3189
|
-
0, () => GetLogRecordRequest$, () => GetLogRecordResponse$
|
|
3190
|
-
];
|
|
3191
|
-
var GetQueryResults$ = [9, n0, _GQR,
|
|
3192
|
-
0, () => GetQueryResultsRequest$, () => GetQueryResultsResponse$
|
|
3193
|
-
];
|
|
3194
|
-
var GetScheduledQuery$ = [9, n0, _GSQ,
|
|
3195
|
-
0, () => GetScheduledQueryRequest$, () => GetScheduledQueryResponse$
|
|
3196
|
-
];
|
|
3197
|
-
var GetScheduledQueryHistory$ = [9, n0, _GSQH,
|
|
3198
|
-
0, () => GetScheduledQueryHistoryRequest$, () => GetScheduledQueryHistoryResponse$
|
|
3199
|
-
];
|
|
3200
|
-
var GetTransformer$ = [9, n0, _GT,
|
|
3201
|
-
0, () => GetTransformerRequest$, () => GetTransformerResponse$
|
|
3202
|
-
];
|
|
3203
|
-
var ListAggregateLogGroupSummaries$ = [9, n0, _LALGS,
|
|
3204
|
-
0, () => ListAggregateLogGroupSummariesRequest$, () => ListAggregateLogGroupSummariesResponse$
|
|
3205
|
-
];
|
|
3206
|
-
var ListAnomalies$ = [9, n0, _LA,
|
|
3207
|
-
0, () => ListAnomaliesRequest$, () => ListAnomaliesResponse$
|
|
3208
|
-
];
|
|
3209
|
-
var ListIntegrations$ = [9, n0, _LI,
|
|
3210
|
-
0, () => ListIntegrationsRequest$, () => ListIntegrationsResponse$
|
|
3211
|
-
];
|
|
3212
|
-
var ListLogAnomalyDetectors$ = [9, n0, _LLAD,
|
|
3213
|
-
0, () => ListLogAnomalyDetectorsRequest$, () => ListLogAnomalyDetectorsResponse$
|
|
3214
|
-
];
|
|
3215
|
-
var ListLogGroups$ = [9, n0, _LLG,
|
|
3216
|
-
0, () => ListLogGroupsRequest$, () => ListLogGroupsResponse$
|
|
3217
|
-
];
|
|
3218
|
-
var ListLogGroupsForQuery$ = [9, n0, _LLGFQ,
|
|
3219
|
-
0, () => ListLogGroupsForQueryRequest$, () => ListLogGroupsForQueryResponse$
|
|
3220
|
-
];
|
|
3221
|
-
var ListScheduledQueries$ = [9, n0, _LSQ,
|
|
3222
|
-
0, () => ListScheduledQueriesRequest$, () => ListScheduledQueriesResponse$
|
|
3223
|
-
];
|
|
3224
|
-
var ListSourcesForS3TableIntegration$ = [9, n0, _LSFSTI,
|
|
3225
|
-
0, () => ListSourcesForS3TableIntegrationRequest$, () => ListSourcesForS3TableIntegrationResponse$
|
|
3226
|
-
];
|
|
3227
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3228
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3229
|
-
];
|
|
3230
|
-
var ListTagsLogGroup$ = [9, n0, _LTLG,
|
|
3231
|
-
0, () => ListTagsLogGroupRequest$, () => ListTagsLogGroupResponse$
|
|
3232
|
-
];
|
|
3233
|
-
var PutAccountPolicy$ = [9, n0, _PAP,
|
|
3234
|
-
0, () => PutAccountPolicyRequest$, () => PutAccountPolicyResponse$
|
|
3235
|
-
];
|
|
3236
|
-
var PutDataProtectionPolicy$ = [9, n0, _PDPP,
|
|
3237
|
-
0, () => PutDataProtectionPolicyRequest$, () => PutDataProtectionPolicyResponse$
|
|
3238
|
-
];
|
|
3239
|
-
var PutDeliveryDestination$ = [9, n0, _PDD,
|
|
3240
|
-
0, () => PutDeliveryDestinationRequest$, () => PutDeliveryDestinationResponse$
|
|
3241
|
-
];
|
|
3242
|
-
var PutDeliveryDestinationPolicy$ = [9, n0, _PDDP,
|
|
3243
|
-
0, () => PutDeliveryDestinationPolicyRequest$, () => PutDeliveryDestinationPolicyResponse$
|
|
3244
|
-
];
|
|
3245
|
-
var PutDeliverySource$ = [9, n0, _PDS,
|
|
3246
|
-
0, () => PutDeliverySourceRequest$, () => PutDeliverySourceResponse$
|
|
3247
|
-
];
|
|
3248
|
-
var PutDestination$ = [9, n0, _PD,
|
|
3249
|
-
0, () => PutDestinationRequest$, () => PutDestinationResponse$
|
|
3250
|
-
];
|
|
3251
|
-
var PutDestinationPolicy$ = [9, n0, _PDP,
|
|
3252
|
-
0, () => PutDestinationPolicyRequest$, () => __Unit
|
|
3253
|
-
];
|
|
3254
|
-
var PutIndexPolicy$ = [9, n0, _PIP,
|
|
3255
|
-
0, () => PutIndexPolicyRequest$, () => PutIndexPolicyResponse$
|
|
3256
|
-
];
|
|
3257
|
-
var PutIntegration$ = [9, n0, _PI,
|
|
3258
|
-
0, () => PutIntegrationRequest$, () => PutIntegrationResponse$
|
|
3259
|
-
];
|
|
3260
|
-
var PutLogEvents$ = [9, n0, _PLE,
|
|
3261
|
-
0, () => PutLogEventsRequest$, () => PutLogEventsResponse$
|
|
3262
|
-
];
|
|
3263
|
-
var PutLogGroupDeletionProtection$ = [9, n0, _PLGDP,
|
|
3264
|
-
0, () => PutLogGroupDeletionProtectionRequest$, () => __Unit
|
|
3265
|
-
];
|
|
3266
|
-
var PutMetricFilter$ = [9, n0, _PMF,
|
|
3267
|
-
0, () => PutMetricFilterRequest$, () => __Unit
|
|
3268
|
-
];
|
|
3269
|
-
var PutQueryDefinition$ = [9, n0, _PQD,
|
|
3270
|
-
0, () => PutQueryDefinitionRequest$, () => PutQueryDefinitionResponse$
|
|
3271
|
-
];
|
|
3272
|
-
var PutResourcePolicy$ = [9, n0, _PRP,
|
|
3273
|
-
0, () => PutResourcePolicyRequest$, () => PutResourcePolicyResponse$
|
|
3274
|
-
];
|
|
3275
|
-
var PutRetentionPolicy$ = [9, n0, _PRPu,
|
|
3276
|
-
0, () => PutRetentionPolicyRequest$, () => __Unit
|
|
3277
|
-
];
|
|
3278
|
-
var PutSubscriptionFilter$ = [9, n0, _PSF,
|
|
3279
|
-
0, () => PutSubscriptionFilterRequest$, () => __Unit
|
|
3280
|
-
];
|
|
3281
|
-
var PutTransformer$ = [9, n0, _PTu,
|
|
3282
|
-
0, () => PutTransformerRequest$, () => __Unit
|
|
3283
|
-
];
|
|
3284
|
-
var StartLiveTail$ = [9, n0, _SLT,
|
|
3285
|
-
{ [_end]: ["streaming-"] }, () => StartLiveTailRequest$, () => StartLiveTailResponse$
|
|
3286
|
-
];
|
|
3287
|
-
var StartQuery$ = [9, n0, _SQ,
|
|
3288
|
-
0, () => StartQueryRequest$, () => StartQueryResponse$
|
|
3289
|
-
];
|
|
3290
|
-
var StopQuery$ = [9, n0, _SQt,
|
|
3291
|
-
0, () => StopQueryRequest$, () => StopQueryResponse$
|
|
3292
|
-
];
|
|
3293
|
-
var TagLogGroup$ = [9, n0, _TLG,
|
|
3294
|
-
0, () => TagLogGroupRequest$, () => __Unit
|
|
3295
|
-
];
|
|
3296
|
-
var TagResource$ = [9, n0, _TR,
|
|
3297
|
-
0, () => TagResourceRequest$, () => __Unit
|
|
3298
|
-
];
|
|
3299
|
-
var TestMetricFilter$ = [9, n0, _TMF,
|
|
3300
|
-
0, () => TestMetricFilterRequest$, () => TestMetricFilterResponse$
|
|
3301
|
-
];
|
|
3302
|
-
var TestTransformer$ = [9, n0, _TT,
|
|
3303
|
-
0, () => TestTransformerRequest$, () => TestTransformerResponse$
|
|
3304
|
-
];
|
|
3305
|
-
var UntagLogGroup$ = [9, n0, _ULG,
|
|
3306
|
-
0, () => UntagLogGroupRequest$, () => __Unit
|
|
3307
|
-
];
|
|
3308
|
-
var UntagResource$ = [9, n0, _UR,
|
|
3309
|
-
0, () => UntagResourceRequest$, () => __Unit
|
|
3310
|
-
];
|
|
3311
|
-
var UpdateAnomaly$ = [9, n0, _UA,
|
|
3312
|
-
0, () => UpdateAnomalyRequest$, () => __Unit
|
|
3313
|
-
];
|
|
3314
|
-
var UpdateDeliveryConfiguration$ = [9, n0, _UDC,
|
|
3315
|
-
0, () => UpdateDeliveryConfigurationRequest$, () => UpdateDeliveryConfigurationResponse$
|
|
3316
|
-
];
|
|
3317
|
-
var UpdateLogAnomalyDetector$ = [9, n0, _ULAD,
|
|
3318
|
-
0, () => UpdateLogAnomalyDetectorRequest$, () => __Unit
|
|
3319
|
-
];
|
|
3320
|
-
var UpdateScheduledQuery$ = [9, n0, _USQ,
|
|
3321
|
-
0, () => UpdateScheduledQueryRequest$, () => UpdateScheduledQueryResponse$
|
|
3322
|
-
];
|
|
3323
|
-
|
|
3324
118
|
class AssociateKmsKeyCommand extends smithyClient.Command
|
|
3325
119
|
.classBuilder()
|
|
3326
120
|
.ep(commonParams)
|
|
@@ -3329,7 +123,7 @@ class AssociateKmsKeyCommand extends smithyClient.Command
|
|
|
3329
123
|
})
|
|
3330
124
|
.s("Logs_20140328", "AssociateKmsKey", {})
|
|
3331
125
|
.n("CloudWatchLogsClient", "AssociateKmsKeyCommand")
|
|
3332
|
-
.sc(AssociateKmsKey$)
|
|
126
|
+
.sc(schemas_0.AssociateKmsKey$)
|
|
3333
127
|
.build() {
|
|
3334
128
|
}
|
|
3335
129
|
|
|
@@ -3341,7 +135,7 @@ class AssociateSourceToS3TableIntegrationCommand extends smithyClient.Command
|
|
|
3341
135
|
})
|
|
3342
136
|
.s("Logs_20140328", "AssociateSourceToS3TableIntegration", {})
|
|
3343
137
|
.n("CloudWatchLogsClient", "AssociateSourceToS3TableIntegrationCommand")
|
|
3344
|
-
.sc(AssociateSourceToS3TableIntegration$)
|
|
138
|
+
.sc(schemas_0.AssociateSourceToS3TableIntegration$)
|
|
3345
139
|
.build() {
|
|
3346
140
|
}
|
|
3347
141
|
|
|
@@ -3353,7 +147,7 @@ class CancelExportTaskCommand extends smithyClient.Command
|
|
|
3353
147
|
})
|
|
3354
148
|
.s("Logs_20140328", "CancelExportTask", {})
|
|
3355
149
|
.n("CloudWatchLogsClient", "CancelExportTaskCommand")
|
|
3356
|
-
.sc(CancelExportTask$)
|
|
150
|
+
.sc(schemas_0.CancelExportTask$)
|
|
3357
151
|
.build() {
|
|
3358
152
|
}
|
|
3359
153
|
|
|
@@ -3365,7 +159,7 @@ class CancelImportTaskCommand extends smithyClient.Command
|
|
|
3365
159
|
})
|
|
3366
160
|
.s("Logs_20140328", "CancelImportTask", {})
|
|
3367
161
|
.n("CloudWatchLogsClient", "CancelImportTaskCommand")
|
|
3368
|
-
.sc(CancelImportTask$)
|
|
162
|
+
.sc(schemas_0.CancelImportTask$)
|
|
3369
163
|
.build() {
|
|
3370
164
|
}
|
|
3371
165
|
|
|
@@ -3377,7 +171,7 @@ class CreateDeliveryCommand extends smithyClient.Command
|
|
|
3377
171
|
})
|
|
3378
172
|
.s("Logs_20140328", "CreateDelivery", {})
|
|
3379
173
|
.n("CloudWatchLogsClient", "CreateDeliveryCommand")
|
|
3380
|
-
.sc(CreateDelivery$)
|
|
174
|
+
.sc(schemas_0.CreateDelivery$)
|
|
3381
175
|
.build() {
|
|
3382
176
|
}
|
|
3383
177
|
|
|
@@ -3389,7 +183,7 @@ class CreateExportTaskCommand extends smithyClient.Command
|
|
|
3389
183
|
})
|
|
3390
184
|
.s("Logs_20140328", "CreateExportTask", {})
|
|
3391
185
|
.n("CloudWatchLogsClient", "CreateExportTaskCommand")
|
|
3392
|
-
.sc(CreateExportTask$)
|
|
186
|
+
.sc(schemas_0.CreateExportTask$)
|
|
3393
187
|
.build() {
|
|
3394
188
|
}
|
|
3395
189
|
|
|
@@ -3401,7 +195,7 @@ class CreateImportTaskCommand extends smithyClient.Command
|
|
|
3401
195
|
})
|
|
3402
196
|
.s("Logs_20140328", "CreateImportTask", {})
|
|
3403
197
|
.n("CloudWatchLogsClient", "CreateImportTaskCommand")
|
|
3404
|
-
.sc(CreateImportTask$)
|
|
198
|
+
.sc(schemas_0.CreateImportTask$)
|
|
3405
199
|
.build() {
|
|
3406
200
|
}
|
|
3407
201
|
|
|
@@ -3413,7 +207,7 @@ class CreateLogAnomalyDetectorCommand extends smithyClient.Command
|
|
|
3413
207
|
})
|
|
3414
208
|
.s("Logs_20140328", "CreateLogAnomalyDetector", {})
|
|
3415
209
|
.n("CloudWatchLogsClient", "CreateLogAnomalyDetectorCommand")
|
|
3416
|
-
.sc(CreateLogAnomalyDetector$)
|
|
210
|
+
.sc(schemas_0.CreateLogAnomalyDetector$)
|
|
3417
211
|
.build() {
|
|
3418
212
|
}
|
|
3419
213
|
|
|
@@ -3425,7 +219,7 @@ class CreateLogGroupCommand extends smithyClient.Command
|
|
|
3425
219
|
})
|
|
3426
220
|
.s("Logs_20140328", "CreateLogGroup", {})
|
|
3427
221
|
.n("CloudWatchLogsClient", "CreateLogGroupCommand")
|
|
3428
|
-
.sc(CreateLogGroup$)
|
|
222
|
+
.sc(schemas_0.CreateLogGroup$)
|
|
3429
223
|
.build() {
|
|
3430
224
|
}
|
|
3431
225
|
|
|
@@ -3437,7 +231,7 @@ class CreateLogStreamCommand extends smithyClient.Command
|
|
|
3437
231
|
})
|
|
3438
232
|
.s("Logs_20140328", "CreateLogStream", {})
|
|
3439
233
|
.n("CloudWatchLogsClient", "CreateLogStreamCommand")
|
|
3440
|
-
.sc(CreateLogStream$)
|
|
234
|
+
.sc(schemas_0.CreateLogStream$)
|
|
3441
235
|
.build() {
|
|
3442
236
|
}
|
|
3443
237
|
|
|
@@ -3449,7 +243,7 @@ class CreateScheduledQueryCommand extends smithyClient.Command
|
|
|
3449
243
|
})
|
|
3450
244
|
.s("Logs_20140328", "CreateScheduledQuery", {})
|
|
3451
245
|
.n("CloudWatchLogsClient", "CreateScheduledQueryCommand")
|
|
3452
|
-
.sc(CreateScheduledQuery$)
|
|
246
|
+
.sc(schemas_0.CreateScheduledQuery$)
|
|
3453
247
|
.build() {
|
|
3454
248
|
}
|
|
3455
249
|
|
|
@@ -3461,7 +255,7 @@ class DeleteAccountPolicyCommand extends smithyClient.Command
|
|
|
3461
255
|
})
|
|
3462
256
|
.s("Logs_20140328", "DeleteAccountPolicy", {})
|
|
3463
257
|
.n("CloudWatchLogsClient", "DeleteAccountPolicyCommand")
|
|
3464
|
-
.sc(DeleteAccountPolicy$)
|
|
258
|
+
.sc(schemas_0.DeleteAccountPolicy$)
|
|
3465
259
|
.build() {
|
|
3466
260
|
}
|
|
3467
261
|
|
|
@@ -3473,7 +267,7 @@ class DeleteDataProtectionPolicyCommand extends smithyClient.Command
|
|
|
3473
267
|
})
|
|
3474
268
|
.s("Logs_20140328", "DeleteDataProtectionPolicy", {})
|
|
3475
269
|
.n("CloudWatchLogsClient", "DeleteDataProtectionPolicyCommand")
|
|
3476
|
-
.sc(DeleteDataProtectionPolicy$)
|
|
270
|
+
.sc(schemas_0.DeleteDataProtectionPolicy$)
|
|
3477
271
|
.build() {
|
|
3478
272
|
}
|
|
3479
273
|
|
|
@@ -3485,7 +279,7 @@ class DeleteDeliveryCommand extends smithyClient.Command
|
|
|
3485
279
|
})
|
|
3486
280
|
.s("Logs_20140328", "DeleteDelivery", {})
|
|
3487
281
|
.n("CloudWatchLogsClient", "DeleteDeliveryCommand")
|
|
3488
|
-
.sc(DeleteDelivery$)
|
|
282
|
+
.sc(schemas_0.DeleteDelivery$)
|
|
3489
283
|
.build() {
|
|
3490
284
|
}
|
|
3491
285
|
|
|
@@ -3497,7 +291,7 @@ class DeleteDeliveryDestinationCommand extends smithyClient.Command
|
|
|
3497
291
|
})
|
|
3498
292
|
.s("Logs_20140328", "DeleteDeliveryDestination", {})
|
|
3499
293
|
.n("CloudWatchLogsClient", "DeleteDeliveryDestinationCommand")
|
|
3500
|
-
.sc(DeleteDeliveryDestination$)
|
|
294
|
+
.sc(schemas_0.DeleteDeliveryDestination$)
|
|
3501
295
|
.build() {
|
|
3502
296
|
}
|
|
3503
297
|
|
|
@@ -3509,7 +303,7 @@ class DeleteDeliveryDestinationPolicyCommand extends smithyClient.Command
|
|
|
3509
303
|
})
|
|
3510
304
|
.s("Logs_20140328", "DeleteDeliveryDestinationPolicy", {})
|
|
3511
305
|
.n("CloudWatchLogsClient", "DeleteDeliveryDestinationPolicyCommand")
|
|
3512
|
-
.sc(DeleteDeliveryDestinationPolicy$)
|
|
306
|
+
.sc(schemas_0.DeleteDeliveryDestinationPolicy$)
|
|
3513
307
|
.build() {
|
|
3514
308
|
}
|
|
3515
309
|
|
|
@@ -3521,7 +315,7 @@ class DeleteDeliverySourceCommand extends smithyClient.Command
|
|
|
3521
315
|
})
|
|
3522
316
|
.s("Logs_20140328", "DeleteDeliverySource", {})
|
|
3523
317
|
.n("CloudWatchLogsClient", "DeleteDeliverySourceCommand")
|
|
3524
|
-
.sc(DeleteDeliverySource$)
|
|
318
|
+
.sc(schemas_0.DeleteDeliverySource$)
|
|
3525
319
|
.build() {
|
|
3526
320
|
}
|
|
3527
321
|
|
|
@@ -3533,7 +327,7 @@ class DeleteDestinationCommand extends smithyClient.Command
|
|
|
3533
327
|
})
|
|
3534
328
|
.s("Logs_20140328", "DeleteDestination", {})
|
|
3535
329
|
.n("CloudWatchLogsClient", "DeleteDestinationCommand")
|
|
3536
|
-
.sc(DeleteDestination$)
|
|
330
|
+
.sc(schemas_0.DeleteDestination$)
|
|
3537
331
|
.build() {
|
|
3538
332
|
}
|
|
3539
333
|
|
|
@@ -3545,7 +339,7 @@ class DeleteIndexPolicyCommand extends smithyClient.Command
|
|
|
3545
339
|
})
|
|
3546
340
|
.s("Logs_20140328", "DeleteIndexPolicy", {})
|
|
3547
341
|
.n("CloudWatchLogsClient", "DeleteIndexPolicyCommand")
|
|
3548
|
-
.sc(DeleteIndexPolicy$)
|
|
342
|
+
.sc(schemas_0.DeleteIndexPolicy$)
|
|
3549
343
|
.build() {
|
|
3550
344
|
}
|
|
3551
345
|
|
|
@@ -3557,7 +351,7 @@ class DeleteIntegrationCommand extends smithyClient.Command
|
|
|
3557
351
|
})
|
|
3558
352
|
.s("Logs_20140328", "DeleteIntegration", {})
|
|
3559
353
|
.n("CloudWatchLogsClient", "DeleteIntegrationCommand")
|
|
3560
|
-
.sc(DeleteIntegration$)
|
|
354
|
+
.sc(schemas_0.DeleteIntegration$)
|
|
3561
355
|
.build() {
|
|
3562
356
|
}
|
|
3563
357
|
|
|
@@ -3569,7 +363,7 @@ class DeleteLogAnomalyDetectorCommand extends smithyClient.Command
|
|
|
3569
363
|
})
|
|
3570
364
|
.s("Logs_20140328", "DeleteLogAnomalyDetector", {})
|
|
3571
365
|
.n("CloudWatchLogsClient", "DeleteLogAnomalyDetectorCommand")
|
|
3572
|
-
.sc(DeleteLogAnomalyDetector$)
|
|
366
|
+
.sc(schemas_0.DeleteLogAnomalyDetector$)
|
|
3573
367
|
.build() {
|
|
3574
368
|
}
|
|
3575
369
|
|
|
@@ -3581,7 +375,7 @@ class DeleteLogGroupCommand extends smithyClient.Command
|
|
|
3581
375
|
})
|
|
3582
376
|
.s("Logs_20140328", "DeleteLogGroup", {})
|
|
3583
377
|
.n("CloudWatchLogsClient", "DeleteLogGroupCommand")
|
|
3584
|
-
.sc(DeleteLogGroup$)
|
|
378
|
+
.sc(schemas_0.DeleteLogGroup$)
|
|
3585
379
|
.build() {
|
|
3586
380
|
}
|
|
3587
381
|
|
|
@@ -3593,7 +387,7 @@ class DeleteLogStreamCommand extends smithyClient.Command
|
|
|
3593
387
|
})
|
|
3594
388
|
.s("Logs_20140328", "DeleteLogStream", {})
|
|
3595
389
|
.n("CloudWatchLogsClient", "DeleteLogStreamCommand")
|
|
3596
|
-
.sc(DeleteLogStream$)
|
|
390
|
+
.sc(schemas_0.DeleteLogStream$)
|
|
3597
391
|
.build() {
|
|
3598
392
|
}
|
|
3599
393
|
|
|
@@ -3605,7 +399,7 @@ class DeleteMetricFilterCommand extends smithyClient.Command
|
|
|
3605
399
|
})
|
|
3606
400
|
.s("Logs_20140328", "DeleteMetricFilter", {})
|
|
3607
401
|
.n("CloudWatchLogsClient", "DeleteMetricFilterCommand")
|
|
3608
|
-
.sc(DeleteMetricFilter$)
|
|
402
|
+
.sc(schemas_0.DeleteMetricFilter$)
|
|
3609
403
|
.build() {
|
|
3610
404
|
}
|
|
3611
405
|
|
|
@@ -3617,7 +411,7 @@ class DeleteQueryDefinitionCommand extends smithyClient.Command
|
|
|
3617
411
|
})
|
|
3618
412
|
.s("Logs_20140328", "DeleteQueryDefinition", {})
|
|
3619
413
|
.n("CloudWatchLogsClient", "DeleteQueryDefinitionCommand")
|
|
3620
|
-
.sc(DeleteQueryDefinition$)
|
|
414
|
+
.sc(schemas_0.DeleteQueryDefinition$)
|
|
3621
415
|
.build() {
|
|
3622
416
|
}
|
|
3623
417
|
|
|
@@ -3629,7 +423,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
3629
423
|
})
|
|
3630
424
|
.s("Logs_20140328", "DeleteResourcePolicy", {})
|
|
3631
425
|
.n("CloudWatchLogsClient", "DeleteResourcePolicyCommand")
|
|
3632
|
-
.sc(DeleteResourcePolicy$)
|
|
426
|
+
.sc(schemas_0.DeleteResourcePolicy$)
|
|
3633
427
|
.build() {
|
|
3634
428
|
}
|
|
3635
429
|
|
|
@@ -3641,7 +435,7 @@ class DeleteRetentionPolicyCommand extends smithyClient.Command
|
|
|
3641
435
|
})
|
|
3642
436
|
.s("Logs_20140328", "DeleteRetentionPolicy", {})
|
|
3643
437
|
.n("CloudWatchLogsClient", "DeleteRetentionPolicyCommand")
|
|
3644
|
-
.sc(DeleteRetentionPolicy$)
|
|
438
|
+
.sc(schemas_0.DeleteRetentionPolicy$)
|
|
3645
439
|
.build() {
|
|
3646
440
|
}
|
|
3647
441
|
|
|
@@ -3653,7 +447,7 @@ class DeleteScheduledQueryCommand extends smithyClient.Command
|
|
|
3653
447
|
})
|
|
3654
448
|
.s("Logs_20140328", "DeleteScheduledQuery", {})
|
|
3655
449
|
.n("CloudWatchLogsClient", "DeleteScheduledQueryCommand")
|
|
3656
|
-
.sc(DeleteScheduledQuery$)
|
|
450
|
+
.sc(schemas_0.DeleteScheduledQuery$)
|
|
3657
451
|
.build() {
|
|
3658
452
|
}
|
|
3659
453
|
|
|
@@ -3665,7 +459,7 @@ class DeleteSubscriptionFilterCommand extends smithyClient.Command
|
|
|
3665
459
|
})
|
|
3666
460
|
.s("Logs_20140328", "DeleteSubscriptionFilter", {})
|
|
3667
461
|
.n("CloudWatchLogsClient", "DeleteSubscriptionFilterCommand")
|
|
3668
|
-
.sc(DeleteSubscriptionFilter$)
|
|
462
|
+
.sc(schemas_0.DeleteSubscriptionFilter$)
|
|
3669
463
|
.build() {
|
|
3670
464
|
}
|
|
3671
465
|
|
|
@@ -3677,7 +471,7 @@ class DeleteTransformerCommand extends smithyClient.Command
|
|
|
3677
471
|
})
|
|
3678
472
|
.s("Logs_20140328", "DeleteTransformer", {})
|
|
3679
473
|
.n("CloudWatchLogsClient", "DeleteTransformerCommand")
|
|
3680
|
-
.sc(DeleteTransformer$)
|
|
474
|
+
.sc(schemas_0.DeleteTransformer$)
|
|
3681
475
|
.build() {
|
|
3682
476
|
}
|
|
3683
477
|
|
|
@@ -3689,7 +483,7 @@ class DescribeAccountPoliciesCommand extends smithyClient.Command
|
|
|
3689
483
|
})
|
|
3690
484
|
.s("Logs_20140328", "DescribeAccountPolicies", {})
|
|
3691
485
|
.n("CloudWatchLogsClient", "DescribeAccountPoliciesCommand")
|
|
3692
|
-
.sc(DescribeAccountPolicies$)
|
|
486
|
+
.sc(schemas_0.DescribeAccountPolicies$)
|
|
3693
487
|
.build() {
|
|
3694
488
|
}
|
|
3695
489
|
|
|
@@ -3701,7 +495,7 @@ class DescribeConfigurationTemplatesCommand extends smithyClient.Command
|
|
|
3701
495
|
})
|
|
3702
496
|
.s("Logs_20140328", "DescribeConfigurationTemplates", {})
|
|
3703
497
|
.n("CloudWatchLogsClient", "DescribeConfigurationTemplatesCommand")
|
|
3704
|
-
.sc(DescribeConfigurationTemplates$)
|
|
498
|
+
.sc(schemas_0.DescribeConfigurationTemplates$)
|
|
3705
499
|
.build() {
|
|
3706
500
|
}
|
|
3707
501
|
|
|
@@ -3713,7 +507,7 @@ class DescribeDeliveriesCommand extends smithyClient.Command
|
|
|
3713
507
|
})
|
|
3714
508
|
.s("Logs_20140328", "DescribeDeliveries", {})
|
|
3715
509
|
.n("CloudWatchLogsClient", "DescribeDeliveriesCommand")
|
|
3716
|
-
.sc(DescribeDeliveries$)
|
|
510
|
+
.sc(schemas_0.DescribeDeliveries$)
|
|
3717
511
|
.build() {
|
|
3718
512
|
}
|
|
3719
513
|
|
|
@@ -3725,7 +519,7 @@ class DescribeDeliveryDestinationsCommand extends smithyClient.Command
|
|
|
3725
519
|
})
|
|
3726
520
|
.s("Logs_20140328", "DescribeDeliveryDestinations", {})
|
|
3727
521
|
.n("CloudWatchLogsClient", "DescribeDeliveryDestinationsCommand")
|
|
3728
|
-
.sc(DescribeDeliveryDestinations$)
|
|
522
|
+
.sc(schemas_0.DescribeDeliveryDestinations$)
|
|
3729
523
|
.build() {
|
|
3730
524
|
}
|
|
3731
525
|
|
|
@@ -3737,7 +531,7 @@ class DescribeDeliverySourcesCommand extends smithyClient.Command
|
|
|
3737
531
|
})
|
|
3738
532
|
.s("Logs_20140328", "DescribeDeliverySources", {})
|
|
3739
533
|
.n("CloudWatchLogsClient", "DescribeDeliverySourcesCommand")
|
|
3740
|
-
.sc(DescribeDeliverySources$)
|
|
534
|
+
.sc(schemas_0.DescribeDeliverySources$)
|
|
3741
535
|
.build() {
|
|
3742
536
|
}
|
|
3743
537
|
|
|
@@ -3749,7 +543,7 @@ class DescribeDestinationsCommand extends smithyClient.Command
|
|
|
3749
543
|
})
|
|
3750
544
|
.s("Logs_20140328", "DescribeDestinations", {})
|
|
3751
545
|
.n("CloudWatchLogsClient", "DescribeDestinationsCommand")
|
|
3752
|
-
.sc(DescribeDestinations$)
|
|
546
|
+
.sc(schemas_0.DescribeDestinations$)
|
|
3753
547
|
.build() {
|
|
3754
548
|
}
|
|
3755
549
|
|
|
@@ -3761,7 +555,7 @@ class DescribeExportTasksCommand extends smithyClient.Command
|
|
|
3761
555
|
})
|
|
3762
556
|
.s("Logs_20140328", "DescribeExportTasks", {})
|
|
3763
557
|
.n("CloudWatchLogsClient", "DescribeExportTasksCommand")
|
|
3764
|
-
.sc(DescribeExportTasks$)
|
|
558
|
+
.sc(schemas_0.DescribeExportTasks$)
|
|
3765
559
|
.build() {
|
|
3766
560
|
}
|
|
3767
561
|
|
|
@@ -3773,7 +567,7 @@ class DescribeFieldIndexesCommand extends smithyClient.Command
|
|
|
3773
567
|
})
|
|
3774
568
|
.s("Logs_20140328", "DescribeFieldIndexes", {})
|
|
3775
569
|
.n("CloudWatchLogsClient", "DescribeFieldIndexesCommand")
|
|
3776
|
-
.sc(DescribeFieldIndexes$)
|
|
570
|
+
.sc(schemas_0.DescribeFieldIndexes$)
|
|
3777
571
|
.build() {
|
|
3778
572
|
}
|
|
3779
573
|
|
|
@@ -3785,7 +579,7 @@ class DescribeImportTaskBatchesCommand extends smithyClient.Command
|
|
|
3785
579
|
})
|
|
3786
580
|
.s("Logs_20140328", "DescribeImportTaskBatches", {})
|
|
3787
581
|
.n("CloudWatchLogsClient", "DescribeImportTaskBatchesCommand")
|
|
3788
|
-
.sc(DescribeImportTaskBatches$)
|
|
582
|
+
.sc(schemas_0.DescribeImportTaskBatches$)
|
|
3789
583
|
.build() {
|
|
3790
584
|
}
|
|
3791
585
|
|
|
@@ -3797,7 +591,7 @@ class DescribeImportTasksCommand extends smithyClient.Command
|
|
|
3797
591
|
})
|
|
3798
592
|
.s("Logs_20140328", "DescribeImportTasks", {})
|
|
3799
593
|
.n("CloudWatchLogsClient", "DescribeImportTasksCommand")
|
|
3800
|
-
.sc(DescribeImportTasks$)
|
|
594
|
+
.sc(schemas_0.DescribeImportTasks$)
|
|
3801
595
|
.build() {
|
|
3802
596
|
}
|
|
3803
597
|
|
|
@@ -3809,7 +603,7 @@ class DescribeIndexPoliciesCommand extends smithyClient.Command
|
|
|
3809
603
|
})
|
|
3810
604
|
.s("Logs_20140328", "DescribeIndexPolicies", {})
|
|
3811
605
|
.n("CloudWatchLogsClient", "DescribeIndexPoliciesCommand")
|
|
3812
|
-
.sc(DescribeIndexPolicies$)
|
|
606
|
+
.sc(schemas_0.DescribeIndexPolicies$)
|
|
3813
607
|
.build() {
|
|
3814
608
|
}
|
|
3815
609
|
|
|
@@ -3821,7 +615,7 @@ class DescribeLogGroupsCommand extends smithyClient.Command
|
|
|
3821
615
|
})
|
|
3822
616
|
.s("Logs_20140328", "DescribeLogGroups", {})
|
|
3823
617
|
.n("CloudWatchLogsClient", "DescribeLogGroupsCommand")
|
|
3824
|
-
.sc(DescribeLogGroups$)
|
|
618
|
+
.sc(schemas_0.DescribeLogGroups$)
|
|
3825
619
|
.build() {
|
|
3826
620
|
}
|
|
3827
621
|
|
|
@@ -3833,7 +627,7 @@ class DescribeLogStreamsCommand extends smithyClient.Command
|
|
|
3833
627
|
})
|
|
3834
628
|
.s("Logs_20140328", "DescribeLogStreams", {})
|
|
3835
629
|
.n("CloudWatchLogsClient", "DescribeLogStreamsCommand")
|
|
3836
|
-
.sc(DescribeLogStreams$)
|
|
630
|
+
.sc(schemas_0.DescribeLogStreams$)
|
|
3837
631
|
.build() {
|
|
3838
632
|
}
|
|
3839
633
|
|
|
@@ -3845,7 +639,7 @@ class DescribeMetricFiltersCommand extends smithyClient.Command
|
|
|
3845
639
|
})
|
|
3846
640
|
.s("Logs_20140328", "DescribeMetricFilters", {})
|
|
3847
641
|
.n("CloudWatchLogsClient", "DescribeMetricFiltersCommand")
|
|
3848
|
-
.sc(DescribeMetricFilters$)
|
|
642
|
+
.sc(schemas_0.DescribeMetricFilters$)
|
|
3849
643
|
.build() {
|
|
3850
644
|
}
|
|
3851
645
|
|
|
@@ -3857,7 +651,7 @@ class DescribeQueriesCommand extends smithyClient.Command
|
|
|
3857
651
|
})
|
|
3858
652
|
.s("Logs_20140328", "DescribeQueries", {})
|
|
3859
653
|
.n("CloudWatchLogsClient", "DescribeQueriesCommand")
|
|
3860
|
-
.sc(DescribeQueries$)
|
|
654
|
+
.sc(schemas_0.DescribeQueries$)
|
|
3861
655
|
.build() {
|
|
3862
656
|
}
|
|
3863
657
|
|
|
@@ -3869,7 +663,7 @@ class DescribeQueryDefinitionsCommand extends smithyClient.Command
|
|
|
3869
663
|
})
|
|
3870
664
|
.s("Logs_20140328", "DescribeQueryDefinitions", {})
|
|
3871
665
|
.n("CloudWatchLogsClient", "DescribeQueryDefinitionsCommand")
|
|
3872
|
-
.sc(DescribeQueryDefinitions$)
|
|
666
|
+
.sc(schemas_0.DescribeQueryDefinitions$)
|
|
3873
667
|
.build() {
|
|
3874
668
|
}
|
|
3875
669
|
|
|
@@ -3881,7 +675,7 @@ class DescribeResourcePoliciesCommand extends smithyClient.Command
|
|
|
3881
675
|
})
|
|
3882
676
|
.s("Logs_20140328", "DescribeResourcePolicies", {})
|
|
3883
677
|
.n("CloudWatchLogsClient", "DescribeResourcePoliciesCommand")
|
|
3884
|
-
.sc(DescribeResourcePolicies$)
|
|
678
|
+
.sc(schemas_0.DescribeResourcePolicies$)
|
|
3885
679
|
.build() {
|
|
3886
680
|
}
|
|
3887
681
|
|
|
@@ -3893,7 +687,7 @@ class DescribeSubscriptionFiltersCommand extends smithyClient.Command
|
|
|
3893
687
|
})
|
|
3894
688
|
.s("Logs_20140328", "DescribeSubscriptionFilters", {})
|
|
3895
689
|
.n("CloudWatchLogsClient", "DescribeSubscriptionFiltersCommand")
|
|
3896
|
-
.sc(DescribeSubscriptionFilters$)
|
|
690
|
+
.sc(schemas_0.DescribeSubscriptionFilters$)
|
|
3897
691
|
.build() {
|
|
3898
692
|
}
|
|
3899
693
|
|
|
@@ -3905,7 +699,7 @@ class DisassociateKmsKeyCommand extends smithyClient.Command
|
|
|
3905
699
|
})
|
|
3906
700
|
.s("Logs_20140328", "DisassociateKmsKey", {})
|
|
3907
701
|
.n("CloudWatchLogsClient", "DisassociateKmsKeyCommand")
|
|
3908
|
-
.sc(DisassociateKmsKey$)
|
|
702
|
+
.sc(schemas_0.DisassociateKmsKey$)
|
|
3909
703
|
.build() {
|
|
3910
704
|
}
|
|
3911
705
|
|
|
@@ -3917,7 +711,7 @@ class DisassociateSourceFromS3TableIntegrationCommand extends smithyClient.Comma
|
|
|
3917
711
|
})
|
|
3918
712
|
.s("Logs_20140328", "DisassociateSourceFromS3TableIntegration", {})
|
|
3919
713
|
.n("CloudWatchLogsClient", "DisassociateSourceFromS3TableIntegrationCommand")
|
|
3920
|
-
.sc(DisassociateSourceFromS3TableIntegration$)
|
|
714
|
+
.sc(schemas_0.DisassociateSourceFromS3TableIntegration$)
|
|
3921
715
|
.build() {
|
|
3922
716
|
}
|
|
3923
717
|
|
|
@@ -3929,7 +723,7 @@ class FilterLogEventsCommand extends smithyClient.Command
|
|
|
3929
723
|
})
|
|
3930
724
|
.s("Logs_20140328", "FilterLogEvents", {})
|
|
3931
725
|
.n("CloudWatchLogsClient", "FilterLogEventsCommand")
|
|
3932
|
-
.sc(FilterLogEvents$)
|
|
726
|
+
.sc(schemas_0.FilterLogEvents$)
|
|
3933
727
|
.build() {
|
|
3934
728
|
}
|
|
3935
729
|
|
|
@@ -3941,7 +735,7 @@ class GetDataProtectionPolicyCommand extends smithyClient.Command
|
|
|
3941
735
|
})
|
|
3942
736
|
.s("Logs_20140328", "GetDataProtectionPolicy", {})
|
|
3943
737
|
.n("CloudWatchLogsClient", "GetDataProtectionPolicyCommand")
|
|
3944
|
-
.sc(GetDataProtectionPolicy$)
|
|
738
|
+
.sc(schemas_0.GetDataProtectionPolicy$)
|
|
3945
739
|
.build() {
|
|
3946
740
|
}
|
|
3947
741
|
|
|
@@ -3953,7 +747,7 @@ class GetDeliveryCommand extends smithyClient.Command
|
|
|
3953
747
|
})
|
|
3954
748
|
.s("Logs_20140328", "GetDelivery", {})
|
|
3955
749
|
.n("CloudWatchLogsClient", "GetDeliveryCommand")
|
|
3956
|
-
.sc(GetDelivery$)
|
|
750
|
+
.sc(schemas_0.GetDelivery$)
|
|
3957
751
|
.build() {
|
|
3958
752
|
}
|
|
3959
753
|
|
|
@@ -3965,7 +759,7 @@ class GetDeliveryDestinationCommand extends smithyClient.Command
|
|
|
3965
759
|
})
|
|
3966
760
|
.s("Logs_20140328", "GetDeliveryDestination", {})
|
|
3967
761
|
.n("CloudWatchLogsClient", "GetDeliveryDestinationCommand")
|
|
3968
|
-
.sc(GetDeliveryDestination$)
|
|
762
|
+
.sc(schemas_0.GetDeliveryDestination$)
|
|
3969
763
|
.build() {
|
|
3970
764
|
}
|
|
3971
765
|
|
|
@@ -3977,7 +771,7 @@ class GetDeliveryDestinationPolicyCommand extends smithyClient.Command
|
|
|
3977
771
|
})
|
|
3978
772
|
.s("Logs_20140328", "GetDeliveryDestinationPolicy", {})
|
|
3979
773
|
.n("CloudWatchLogsClient", "GetDeliveryDestinationPolicyCommand")
|
|
3980
|
-
.sc(GetDeliveryDestinationPolicy$)
|
|
774
|
+
.sc(schemas_0.GetDeliveryDestinationPolicy$)
|
|
3981
775
|
.build() {
|
|
3982
776
|
}
|
|
3983
777
|
|
|
@@ -3989,7 +783,7 @@ class GetDeliverySourceCommand extends smithyClient.Command
|
|
|
3989
783
|
})
|
|
3990
784
|
.s("Logs_20140328", "GetDeliverySource", {})
|
|
3991
785
|
.n("CloudWatchLogsClient", "GetDeliverySourceCommand")
|
|
3992
|
-
.sc(GetDeliverySource$)
|
|
786
|
+
.sc(schemas_0.GetDeliverySource$)
|
|
3993
787
|
.build() {
|
|
3994
788
|
}
|
|
3995
789
|
|
|
@@ -4001,7 +795,7 @@ class GetIntegrationCommand extends smithyClient.Command
|
|
|
4001
795
|
})
|
|
4002
796
|
.s("Logs_20140328", "GetIntegration", {})
|
|
4003
797
|
.n("CloudWatchLogsClient", "GetIntegrationCommand")
|
|
4004
|
-
.sc(GetIntegration$)
|
|
798
|
+
.sc(schemas_0.GetIntegration$)
|
|
4005
799
|
.build() {
|
|
4006
800
|
}
|
|
4007
801
|
|
|
@@ -4013,7 +807,7 @@ class GetLogAnomalyDetectorCommand extends smithyClient.Command
|
|
|
4013
807
|
})
|
|
4014
808
|
.s("Logs_20140328", "GetLogAnomalyDetector", {})
|
|
4015
809
|
.n("CloudWatchLogsClient", "GetLogAnomalyDetectorCommand")
|
|
4016
|
-
.sc(GetLogAnomalyDetector$)
|
|
810
|
+
.sc(schemas_0.GetLogAnomalyDetector$)
|
|
4017
811
|
.build() {
|
|
4018
812
|
}
|
|
4019
813
|
|
|
@@ -4025,7 +819,7 @@ class GetLogEventsCommand extends smithyClient.Command
|
|
|
4025
819
|
})
|
|
4026
820
|
.s("Logs_20140328", "GetLogEvents", {})
|
|
4027
821
|
.n("CloudWatchLogsClient", "GetLogEventsCommand")
|
|
4028
|
-
.sc(GetLogEvents$)
|
|
822
|
+
.sc(schemas_0.GetLogEvents$)
|
|
4029
823
|
.build() {
|
|
4030
824
|
}
|
|
4031
825
|
|
|
@@ -4037,7 +831,7 @@ class GetLogFieldsCommand extends smithyClient.Command
|
|
|
4037
831
|
})
|
|
4038
832
|
.s("Logs_20140328", "GetLogFields", {})
|
|
4039
833
|
.n("CloudWatchLogsClient", "GetLogFieldsCommand")
|
|
4040
|
-
.sc(GetLogFields$)
|
|
834
|
+
.sc(schemas_0.GetLogFields$)
|
|
4041
835
|
.build() {
|
|
4042
836
|
}
|
|
4043
837
|
|
|
@@ -4049,7 +843,7 @@ class GetLogGroupFieldsCommand extends smithyClient.Command
|
|
|
4049
843
|
})
|
|
4050
844
|
.s("Logs_20140328", "GetLogGroupFields", {})
|
|
4051
845
|
.n("CloudWatchLogsClient", "GetLogGroupFieldsCommand")
|
|
4052
|
-
.sc(GetLogGroupFields$)
|
|
846
|
+
.sc(schemas_0.GetLogGroupFields$)
|
|
4053
847
|
.build() {
|
|
4054
848
|
}
|
|
4055
849
|
|
|
@@ -4065,7 +859,7 @@ class GetLogObjectCommand extends smithyClient.Command
|
|
|
4065
859
|
},
|
|
4066
860
|
})
|
|
4067
861
|
.n("CloudWatchLogsClient", "GetLogObjectCommand")
|
|
4068
|
-
.sc(GetLogObject$)
|
|
862
|
+
.sc(schemas_0.GetLogObject$)
|
|
4069
863
|
.build() {
|
|
4070
864
|
}
|
|
4071
865
|
|
|
@@ -4077,7 +871,7 @@ class GetLogRecordCommand extends smithyClient.Command
|
|
|
4077
871
|
})
|
|
4078
872
|
.s("Logs_20140328", "GetLogRecord", {})
|
|
4079
873
|
.n("CloudWatchLogsClient", "GetLogRecordCommand")
|
|
4080
|
-
.sc(GetLogRecord$)
|
|
874
|
+
.sc(schemas_0.GetLogRecord$)
|
|
4081
875
|
.build() {
|
|
4082
876
|
}
|
|
4083
877
|
|
|
@@ -4089,7 +883,7 @@ class GetQueryResultsCommand extends smithyClient.Command
|
|
|
4089
883
|
})
|
|
4090
884
|
.s("Logs_20140328", "GetQueryResults", {})
|
|
4091
885
|
.n("CloudWatchLogsClient", "GetQueryResultsCommand")
|
|
4092
|
-
.sc(GetQueryResults$)
|
|
886
|
+
.sc(schemas_0.GetQueryResults$)
|
|
4093
887
|
.build() {
|
|
4094
888
|
}
|
|
4095
889
|
|
|
@@ -4101,7 +895,7 @@ class GetScheduledQueryCommand extends smithyClient.Command
|
|
|
4101
895
|
})
|
|
4102
896
|
.s("Logs_20140328", "GetScheduledQuery", {})
|
|
4103
897
|
.n("CloudWatchLogsClient", "GetScheduledQueryCommand")
|
|
4104
|
-
.sc(GetScheduledQuery$)
|
|
898
|
+
.sc(schemas_0.GetScheduledQuery$)
|
|
4105
899
|
.build() {
|
|
4106
900
|
}
|
|
4107
901
|
|
|
@@ -4113,7 +907,7 @@ class GetScheduledQueryHistoryCommand extends smithyClient.Command
|
|
|
4113
907
|
})
|
|
4114
908
|
.s("Logs_20140328", "GetScheduledQueryHistory", {})
|
|
4115
909
|
.n("CloudWatchLogsClient", "GetScheduledQueryHistoryCommand")
|
|
4116
|
-
.sc(GetScheduledQueryHistory$)
|
|
910
|
+
.sc(schemas_0.GetScheduledQueryHistory$)
|
|
4117
911
|
.build() {
|
|
4118
912
|
}
|
|
4119
913
|
|
|
@@ -4125,7 +919,7 @@ class GetTransformerCommand extends smithyClient.Command
|
|
|
4125
919
|
})
|
|
4126
920
|
.s("Logs_20140328", "GetTransformer", {})
|
|
4127
921
|
.n("CloudWatchLogsClient", "GetTransformerCommand")
|
|
4128
|
-
.sc(GetTransformer$)
|
|
922
|
+
.sc(schemas_0.GetTransformer$)
|
|
4129
923
|
.build() {
|
|
4130
924
|
}
|
|
4131
925
|
|
|
@@ -4137,7 +931,7 @@ class ListAggregateLogGroupSummariesCommand extends smithyClient.Command
|
|
|
4137
931
|
})
|
|
4138
932
|
.s("Logs_20140328", "ListAggregateLogGroupSummaries", {})
|
|
4139
933
|
.n("CloudWatchLogsClient", "ListAggregateLogGroupSummariesCommand")
|
|
4140
|
-
.sc(ListAggregateLogGroupSummaries$)
|
|
934
|
+
.sc(schemas_0.ListAggregateLogGroupSummaries$)
|
|
4141
935
|
.build() {
|
|
4142
936
|
}
|
|
4143
937
|
|
|
@@ -4149,7 +943,7 @@ class ListAnomaliesCommand extends smithyClient.Command
|
|
|
4149
943
|
})
|
|
4150
944
|
.s("Logs_20140328", "ListAnomalies", {})
|
|
4151
945
|
.n("CloudWatchLogsClient", "ListAnomaliesCommand")
|
|
4152
|
-
.sc(ListAnomalies$)
|
|
946
|
+
.sc(schemas_0.ListAnomalies$)
|
|
4153
947
|
.build() {
|
|
4154
948
|
}
|
|
4155
949
|
|
|
@@ -4161,7 +955,7 @@ class ListIntegrationsCommand extends smithyClient.Command
|
|
|
4161
955
|
})
|
|
4162
956
|
.s("Logs_20140328", "ListIntegrations", {})
|
|
4163
957
|
.n("CloudWatchLogsClient", "ListIntegrationsCommand")
|
|
4164
|
-
.sc(ListIntegrations$)
|
|
958
|
+
.sc(schemas_0.ListIntegrations$)
|
|
4165
959
|
.build() {
|
|
4166
960
|
}
|
|
4167
961
|
|
|
@@ -4173,7 +967,7 @@ class ListLogAnomalyDetectorsCommand extends smithyClient.Command
|
|
|
4173
967
|
})
|
|
4174
968
|
.s("Logs_20140328", "ListLogAnomalyDetectors", {})
|
|
4175
969
|
.n("CloudWatchLogsClient", "ListLogAnomalyDetectorsCommand")
|
|
4176
|
-
.sc(ListLogAnomalyDetectors$)
|
|
970
|
+
.sc(schemas_0.ListLogAnomalyDetectors$)
|
|
4177
971
|
.build() {
|
|
4178
972
|
}
|
|
4179
973
|
|
|
@@ -4185,7 +979,7 @@ class ListLogGroupsCommand extends smithyClient.Command
|
|
|
4185
979
|
})
|
|
4186
980
|
.s("Logs_20140328", "ListLogGroups", {})
|
|
4187
981
|
.n("CloudWatchLogsClient", "ListLogGroupsCommand")
|
|
4188
|
-
.sc(ListLogGroups$)
|
|
982
|
+
.sc(schemas_0.ListLogGroups$)
|
|
4189
983
|
.build() {
|
|
4190
984
|
}
|
|
4191
985
|
|
|
@@ -4197,7 +991,7 @@ class ListLogGroupsForQueryCommand extends smithyClient.Command
|
|
|
4197
991
|
})
|
|
4198
992
|
.s("Logs_20140328", "ListLogGroupsForQuery", {})
|
|
4199
993
|
.n("CloudWatchLogsClient", "ListLogGroupsForQueryCommand")
|
|
4200
|
-
.sc(ListLogGroupsForQuery$)
|
|
994
|
+
.sc(schemas_0.ListLogGroupsForQuery$)
|
|
4201
995
|
.build() {
|
|
4202
996
|
}
|
|
4203
997
|
|
|
@@ -4209,7 +1003,7 @@ class ListScheduledQueriesCommand extends smithyClient.Command
|
|
|
4209
1003
|
})
|
|
4210
1004
|
.s("Logs_20140328", "ListScheduledQueries", {})
|
|
4211
1005
|
.n("CloudWatchLogsClient", "ListScheduledQueriesCommand")
|
|
4212
|
-
.sc(ListScheduledQueries$)
|
|
1006
|
+
.sc(schemas_0.ListScheduledQueries$)
|
|
4213
1007
|
.build() {
|
|
4214
1008
|
}
|
|
4215
1009
|
|
|
@@ -4221,7 +1015,7 @@ class ListSourcesForS3TableIntegrationCommand extends smithyClient.Command
|
|
|
4221
1015
|
})
|
|
4222
1016
|
.s("Logs_20140328", "ListSourcesForS3TableIntegration", {})
|
|
4223
1017
|
.n("CloudWatchLogsClient", "ListSourcesForS3TableIntegrationCommand")
|
|
4224
|
-
.sc(ListSourcesForS3TableIntegration$)
|
|
1018
|
+
.sc(schemas_0.ListSourcesForS3TableIntegration$)
|
|
4225
1019
|
.build() {
|
|
4226
1020
|
}
|
|
4227
1021
|
|
|
@@ -4233,7 +1027,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
4233
1027
|
})
|
|
4234
1028
|
.s("Logs_20140328", "ListTagsForResource", {})
|
|
4235
1029
|
.n("CloudWatchLogsClient", "ListTagsForResourceCommand")
|
|
4236
|
-
.sc(ListTagsForResource$)
|
|
1030
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
4237
1031
|
.build() {
|
|
4238
1032
|
}
|
|
4239
1033
|
|
|
@@ -4245,7 +1039,7 @@ class ListTagsLogGroupCommand extends smithyClient.Command
|
|
|
4245
1039
|
})
|
|
4246
1040
|
.s("Logs_20140328", "ListTagsLogGroup", {})
|
|
4247
1041
|
.n("CloudWatchLogsClient", "ListTagsLogGroupCommand")
|
|
4248
|
-
.sc(ListTagsLogGroup$)
|
|
1042
|
+
.sc(schemas_0.ListTagsLogGroup$)
|
|
4249
1043
|
.build() {
|
|
4250
1044
|
}
|
|
4251
1045
|
|
|
@@ -4257,7 +1051,7 @@ class PutAccountPolicyCommand extends smithyClient.Command
|
|
|
4257
1051
|
})
|
|
4258
1052
|
.s("Logs_20140328", "PutAccountPolicy", {})
|
|
4259
1053
|
.n("CloudWatchLogsClient", "PutAccountPolicyCommand")
|
|
4260
|
-
.sc(PutAccountPolicy$)
|
|
1054
|
+
.sc(schemas_0.PutAccountPolicy$)
|
|
4261
1055
|
.build() {
|
|
4262
1056
|
}
|
|
4263
1057
|
|
|
@@ -4269,7 +1063,7 @@ class PutDataProtectionPolicyCommand extends smithyClient.Command
|
|
|
4269
1063
|
})
|
|
4270
1064
|
.s("Logs_20140328", "PutDataProtectionPolicy", {})
|
|
4271
1065
|
.n("CloudWatchLogsClient", "PutDataProtectionPolicyCommand")
|
|
4272
|
-
.sc(PutDataProtectionPolicy$)
|
|
1066
|
+
.sc(schemas_0.PutDataProtectionPolicy$)
|
|
4273
1067
|
.build() {
|
|
4274
1068
|
}
|
|
4275
1069
|
|
|
@@ -4281,7 +1075,7 @@ class PutDeliveryDestinationCommand extends smithyClient.Command
|
|
|
4281
1075
|
})
|
|
4282
1076
|
.s("Logs_20140328", "PutDeliveryDestination", {})
|
|
4283
1077
|
.n("CloudWatchLogsClient", "PutDeliveryDestinationCommand")
|
|
4284
|
-
.sc(PutDeliveryDestination$)
|
|
1078
|
+
.sc(schemas_0.PutDeliveryDestination$)
|
|
4285
1079
|
.build() {
|
|
4286
1080
|
}
|
|
4287
1081
|
|
|
@@ -4293,7 +1087,7 @@ class PutDeliveryDestinationPolicyCommand extends smithyClient.Command
|
|
|
4293
1087
|
})
|
|
4294
1088
|
.s("Logs_20140328", "PutDeliveryDestinationPolicy", {})
|
|
4295
1089
|
.n("CloudWatchLogsClient", "PutDeliveryDestinationPolicyCommand")
|
|
4296
|
-
.sc(PutDeliveryDestinationPolicy$)
|
|
1090
|
+
.sc(schemas_0.PutDeliveryDestinationPolicy$)
|
|
4297
1091
|
.build() {
|
|
4298
1092
|
}
|
|
4299
1093
|
|
|
@@ -4305,7 +1099,7 @@ class PutDeliverySourceCommand extends smithyClient.Command
|
|
|
4305
1099
|
})
|
|
4306
1100
|
.s("Logs_20140328", "PutDeliverySource", {})
|
|
4307
1101
|
.n("CloudWatchLogsClient", "PutDeliverySourceCommand")
|
|
4308
|
-
.sc(PutDeliverySource$)
|
|
1102
|
+
.sc(schemas_0.PutDeliverySource$)
|
|
4309
1103
|
.build() {
|
|
4310
1104
|
}
|
|
4311
1105
|
|
|
@@ -4317,7 +1111,7 @@ class PutDestinationCommand extends smithyClient.Command
|
|
|
4317
1111
|
})
|
|
4318
1112
|
.s("Logs_20140328", "PutDestination", {})
|
|
4319
1113
|
.n("CloudWatchLogsClient", "PutDestinationCommand")
|
|
4320
|
-
.sc(PutDestination$)
|
|
1114
|
+
.sc(schemas_0.PutDestination$)
|
|
4321
1115
|
.build() {
|
|
4322
1116
|
}
|
|
4323
1117
|
|
|
@@ -4329,7 +1123,7 @@ class PutDestinationPolicyCommand extends smithyClient.Command
|
|
|
4329
1123
|
})
|
|
4330
1124
|
.s("Logs_20140328", "PutDestinationPolicy", {})
|
|
4331
1125
|
.n("CloudWatchLogsClient", "PutDestinationPolicyCommand")
|
|
4332
|
-
.sc(PutDestinationPolicy$)
|
|
1126
|
+
.sc(schemas_0.PutDestinationPolicy$)
|
|
4333
1127
|
.build() {
|
|
4334
1128
|
}
|
|
4335
1129
|
|
|
@@ -4341,7 +1135,7 @@ class PutIndexPolicyCommand extends smithyClient.Command
|
|
|
4341
1135
|
})
|
|
4342
1136
|
.s("Logs_20140328", "PutIndexPolicy", {})
|
|
4343
1137
|
.n("CloudWatchLogsClient", "PutIndexPolicyCommand")
|
|
4344
|
-
.sc(PutIndexPolicy$)
|
|
1138
|
+
.sc(schemas_0.PutIndexPolicy$)
|
|
4345
1139
|
.build() {
|
|
4346
1140
|
}
|
|
4347
1141
|
|
|
@@ -4353,7 +1147,7 @@ class PutIntegrationCommand extends smithyClient.Command
|
|
|
4353
1147
|
})
|
|
4354
1148
|
.s("Logs_20140328", "PutIntegration", {})
|
|
4355
1149
|
.n("CloudWatchLogsClient", "PutIntegrationCommand")
|
|
4356
|
-
.sc(PutIntegration$)
|
|
1150
|
+
.sc(schemas_0.PutIntegration$)
|
|
4357
1151
|
.build() {
|
|
4358
1152
|
}
|
|
4359
1153
|
|
|
@@ -4365,7 +1159,7 @@ class PutLogEventsCommand extends smithyClient.Command
|
|
|
4365
1159
|
})
|
|
4366
1160
|
.s("Logs_20140328", "PutLogEvents", {})
|
|
4367
1161
|
.n("CloudWatchLogsClient", "PutLogEventsCommand")
|
|
4368
|
-
.sc(PutLogEvents$)
|
|
1162
|
+
.sc(schemas_0.PutLogEvents$)
|
|
4369
1163
|
.build() {
|
|
4370
1164
|
}
|
|
4371
1165
|
|
|
@@ -4377,7 +1171,7 @@ class PutLogGroupDeletionProtectionCommand extends smithyClient.Command
|
|
|
4377
1171
|
})
|
|
4378
1172
|
.s("Logs_20140328", "PutLogGroupDeletionProtection", {})
|
|
4379
1173
|
.n("CloudWatchLogsClient", "PutLogGroupDeletionProtectionCommand")
|
|
4380
|
-
.sc(PutLogGroupDeletionProtection$)
|
|
1174
|
+
.sc(schemas_0.PutLogGroupDeletionProtection$)
|
|
4381
1175
|
.build() {
|
|
4382
1176
|
}
|
|
4383
1177
|
|
|
@@ -4389,7 +1183,7 @@ class PutMetricFilterCommand extends smithyClient.Command
|
|
|
4389
1183
|
})
|
|
4390
1184
|
.s("Logs_20140328", "PutMetricFilter", {})
|
|
4391
1185
|
.n("CloudWatchLogsClient", "PutMetricFilterCommand")
|
|
4392
|
-
.sc(PutMetricFilter$)
|
|
1186
|
+
.sc(schemas_0.PutMetricFilter$)
|
|
4393
1187
|
.build() {
|
|
4394
1188
|
}
|
|
4395
1189
|
|
|
@@ -4401,7 +1195,7 @@ class PutQueryDefinitionCommand extends smithyClient.Command
|
|
|
4401
1195
|
})
|
|
4402
1196
|
.s("Logs_20140328", "PutQueryDefinition", {})
|
|
4403
1197
|
.n("CloudWatchLogsClient", "PutQueryDefinitionCommand")
|
|
4404
|
-
.sc(PutQueryDefinition$)
|
|
1198
|
+
.sc(schemas_0.PutQueryDefinition$)
|
|
4405
1199
|
.build() {
|
|
4406
1200
|
}
|
|
4407
1201
|
|
|
@@ -4413,7 +1207,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
4413
1207
|
})
|
|
4414
1208
|
.s("Logs_20140328", "PutResourcePolicy", {})
|
|
4415
1209
|
.n("CloudWatchLogsClient", "PutResourcePolicyCommand")
|
|
4416
|
-
.sc(PutResourcePolicy$)
|
|
1210
|
+
.sc(schemas_0.PutResourcePolicy$)
|
|
4417
1211
|
.build() {
|
|
4418
1212
|
}
|
|
4419
1213
|
|
|
@@ -4425,7 +1219,7 @@ class PutRetentionPolicyCommand extends smithyClient.Command
|
|
|
4425
1219
|
})
|
|
4426
1220
|
.s("Logs_20140328", "PutRetentionPolicy", {})
|
|
4427
1221
|
.n("CloudWatchLogsClient", "PutRetentionPolicyCommand")
|
|
4428
|
-
.sc(PutRetentionPolicy$)
|
|
1222
|
+
.sc(schemas_0.PutRetentionPolicy$)
|
|
4429
1223
|
.build() {
|
|
4430
1224
|
}
|
|
4431
1225
|
|
|
@@ -4437,7 +1231,7 @@ class PutSubscriptionFilterCommand extends smithyClient.Command
|
|
|
4437
1231
|
})
|
|
4438
1232
|
.s("Logs_20140328", "PutSubscriptionFilter", {})
|
|
4439
1233
|
.n("CloudWatchLogsClient", "PutSubscriptionFilterCommand")
|
|
4440
|
-
.sc(PutSubscriptionFilter$)
|
|
1234
|
+
.sc(schemas_0.PutSubscriptionFilter$)
|
|
4441
1235
|
.build() {
|
|
4442
1236
|
}
|
|
4443
1237
|
|
|
@@ -4449,7 +1243,7 @@ class PutTransformerCommand extends smithyClient.Command
|
|
|
4449
1243
|
})
|
|
4450
1244
|
.s("Logs_20140328", "PutTransformer", {})
|
|
4451
1245
|
.n("CloudWatchLogsClient", "PutTransformerCommand")
|
|
4452
|
-
.sc(PutTransformer$)
|
|
1246
|
+
.sc(schemas_0.PutTransformer$)
|
|
4453
1247
|
.build() {
|
|
4454
1248
|
}
|
|
4455
1249
|
|
|
@@ -4465,7 +1259,7 @@ class StartLiveTailCommand extends smithyClient.Command
|
|
|
4465
1259
|
},
|
|
4466
1260
|
})
|
|
4467
1261
|
.n("CloudWatchLogsClient", "StartLiveTailCommand")
|
|
4468
|
-
.sc(StartLiveTail$)
|
|
1262
|
+
.sc(schemas_0.StartLiveTail$)
|
|
4469
1263
|
.build() {
|
|
4470
1264
|
}
|
|
4471
1265
|
|
|
@@ -4477,7 +1271,7 @@ class StartQueryCommand extends smithyClient.Command
|
|
|
4477
1271
|
})
|
|
4478
1272
|
.s("Logs_20140328", "StartQuery", {})
|
|
4479
1273
|
.n("CloudWatchLogsClient", "StartQueryCommand")
|
|
4480
|
-
.sc(StartQuery$)
|
|
1274
|
+
.sc(schemas_0.StartQuery$)
|
|
4481
1275
|
.build() {
|
|
4482
1276
|
}
|
|
4483
1277
|
|
|
@@ -4489,7 +1283,7 @@ class StopQueryCommand extends smithyClient.Command
|
|
|
4489
1283
|
})
|
|
4490
1284
|
.s("Logs_20140328", "StopQuery", {})
|
|
4491
1285
|
.n("CloudWatchLogsClient", "StopQueryCommand")
|
|
4492
|
-
.sc(StopQuery$)
|
|
1286
|
+
.sc(schemas_0.StopQuery$)
|
|
4493
1287
|
.build() {
|
|
4494
1288
|
}
|
|
4495
1289
|
|
|
@@ -4501,7 +1295,7 @@ class TagLogGroupCommand extends smithyClient.Command
|
|
|
4501
1295
|
})
|
|
4502
1296
|
.s("Logs_20140328", "TagLogGroup", {})
|
|
4503
1297
|
.n("CloudWatchLogsClient", "TagLogGroupCommand")
|
|
4504
|
-
.sc(TagLogGroup$)
|
|
1298
|
+
.sc(schemas_0.TagLogGroup$)
|
|
4505
1299
|
.build() {
|
|
4506
1300
|
}
|
|
4507
1301
|
|
|
@@ -4513,7 +1307,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
4513
1307
|
})
|
|
4514
1308
|
.s("Logs_20140328", "TagResource", {})
|
|
4515
1309
|
.n("CloudWatchLogsClient", "TagResourceCommand")
|
|
4516
|
-
.sc(TagResource$)
|
|
1310
|
+
.sc(schemas_0.TagResource$)
|
|
4517
1311
|
.build() {
|
|
4518
1312
|
}
|
|
4519
1313
|
|
|
@@ -4525,7 +1319,7 @@ class TestMetricFilterCommand extends smithyClient.Command
|
|
|
4525
1319
|
})
|
|
4526
1320
|
.s("Logs_20140328", "TestMetricFilter", {})
|
|
4527
1321
|
.n("CloudWatchLogsClient", "TestMetricFilterCommand")
|
|
4528
|
-
.sc(TestMetricFilter$)
|
|
1322
|
+
.sc(schemas_0.TestMetricFilter$)
|
|
4529
1323
|
.build() {
|
|
4530
1324
|
}
|
|
4531
1325
|
|
|
@@ -4537,7 +1331,7 @@ class TestTransformerCommand extends smithyClient.Command
|
|
|
4537
1331
|
})
|
|
4538
1332
|
.s("Logs_20140328", "TestTransformer", {})
|
|
4539
1333
|
.n("CloudWatchLogsClient", "TestTransformerCommand")
|
|
4540
|
-
.sc(TestTransformer$)
|
|
1334
|
+
.sc(schemas_0.TestTransformer$)
|
|
4541
1335
|
.build() {
|
|
4542
1336
|
}
|
|
4543
1337
|
|
|
@@ -4549,7 +1343,7 @@ class UntagLogGroupCommand extends smithyClient.Command
|
|
|
4549
1343
|
})
|
|
4550
1344
|
.s("Logs_20140328", "UntagLogGroup", {})
|
|
4551
1345
|
.n("CloudWatchLogsClient", "UntagLogGroupCommand")
|
|
4552
|
-
.sc(UntagLogGroup$)
|
|
1346
|
+
.sc(schemas_0.UntagLogGroup$)
|
|
4553
1347
|
.build() {
|
|
4554
1348
|
}
|
|
4555
1349
|
|
|
@@ -4561,7 +1355,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
4561
1355
|
})
|
|
4562
1356
|
.s("Logs_20140328", "UntagResource", {})
|
|
4563
1357
|
.n("CloudWatchLogsClient", "UntagResourceCommand")
|
|
4564
|
-
.sc(UntagResource$)
|
|
1358
|
+
.sc(schemas_0.UntagResource$)
|
|
4565
1359
|
.build() {
|
|
4566
1360
|
}
|
|
4567
1361
|
|
|
@@ -4573,7 +1367,7 @@ class UpdateAnomalyCommand extends smithyClient.Command
|
|
|
4573
1367
|
})
|
|
4574
1368
|
.s("Logs_20140328", "UpdateAnomaly", {})
|
|
4575
1369
|
.n("CloudWatchLogsClient", "UpdateAnomalyCommand")
|
|
4576
|
-
.sc(UpdateAnomaly$)
|
|
1370
|
+
.sc(schemas_0.UpdateAnomaly$)
|
|
4577
1371
|
.build() {
|
|
4578
1372
|
}
|
|
4579
1373
|
|
|
@@ -4585,7 +1379,7 @@ class UpdateDeliveryConfigurationCommand extends smithyClient.Command
|
|
|
4585
1379
|
})
|
|
4586
1380
|
.s("Logs_20140328", "UpdateDeliveryConfiguration", {})
|
|
4587
1381
|
.n("CloudWatchLogsClient", "UpdateDeliveryConfigurationCommand")
|
|
4588
|
-
.sc(UpdateDeliveryConfiguration$)
|
|
1382
|
+
.sc(schemas_0.UpdateDeliveryConfiguration$)
|
|
4589
1383
|
.build() {
|
|
4590
1384
|
}
|
|
4591
1385
|
|
|
@@ -4597,7 +1391,7 @@ class UpdateLogAnomalyDetectorCommand extends smithyClient.Command
|
|
|
4597
1391
|
})
|
|
4598
1392
|
.s("Logs_20140328", "UpdateLogAnomalyDetector", {})
|
|
4599
1393
|
.n("CloudWatchLogsClient", "UpdateLogAnomalyDetectorCommand")
|
|
4600
|
-
.sc(UpdateLogAnomalyDetector$)
|
|
1394
|
+
.sc(schemas_0.UpdateLogAnomalyDetector$)
|
|
4601
1395
|
.build() {
|
|
4602
1396
|
}
|
|
4603
1397
|
|
|
@@ -4609,7 +1403,7 @@ class UpdateScheduledQueryCommand extends smithyClient.Command
|
|
|
4609
1403
|
})
|
|
4610
1404
|
.s("Logs_20140328", "UpdateScheduledQuery", {})
|
|
4611
1405
|
.n("CloudWatchLogsClient", "UpdateScheduledQueryCommand")
|
|
4612
|
-
.sc(UpdateScheduledQuery$)
|
|
1406
|
+
.sc(schemas_0.UpdateScheduledQuery$)
|
|
4613
1407
|
.build() {
|
|
4614
1408
|
}
|
|
4615
1409
|
|
|
@@ -5012,597 +1806,156 @@ Object.defineProperty(exports, "__Client", {
|
|
|
5012
1806
|
enumerable: true,
|
|
5013
1807
|
get: function () { return smithyClient.Client; }
|
|
5014
1808
|
});
|
|
5015
|
-
exports
|
|
5016
|
-
|
|
5017
|
-
|
|
1809
|
+
Object.defineProperty(exports, "CloudWatchLogsServiceException", {
|
|
1810
|
+
enumerable: true,
|
|
1811
|
+
get: function () { return CloudWatchLogsServiceException.CloudWatchLogsServiceException; }
|
|
1812
|
+
});
|
|
5018
1813
|
exports.ActionStatus = ActionStatus;
|
|
5019
|
-
exports.AddKeyEntry$ = AddKeyEntry$;
|
|
5020
|
-
exports.AddKeys$ = AddKeys$;
|
|
5021
|
-
exports.AggregateLogGroupSummary$ = AggregateLogGroupSummary$;
|
|
5022
|
-
exports.Anomaly$ = Anomaly$;
|
|
5023
|
-
exports.AnomalyDetector$ = AnomalyDetector$;
|
|
5024
1814
|
exports.AnomalyDetectorStatus = AnomalyDetectorStatus;
|
|
5025
|
-
exports.AssociateKmsKey$ = AssociateKmsKey$;
|
|
5026
1815
|
exports.AssociateKmsKeyCommand = AssociateKmsKeyCommand;
|
|
5027
|
-
exports.AssociateKmsKeyRequest$ = AssociateKmsKeyRequest$;
|
|
5028
|
-
exports.AssociateSourceToS3TableIntegration$ = AssociateSourceToS3TableIntegration$;
|
|
5029
1816
|
exports.AssociateSourceToS3TableIntegrationCommand = AssociateSourceToS3TableIntegrationCommand;
|
|
5030
|
-
exports.AssociateSourceToS3TableIntegrationRequest$ = AssociateSourceToS3TableIntegrationRequest$;
|
|
5031
|
-
exports.AssociateSourceToS3TableIntegrationResponse$ = AssociateSourceToS3TableIntegrationResponse$;
|
|
5032
|
-
exports.CSV$ = CSV$;
|
|
5033
|
-
exports.CancelExportTask$ = CancelExportTask$;
|
|
5034
1817
|
exports.CancelExportTaskCommand = CancelExportTaskCommand;
|
|
5035
|
-
exports.CancelExportTaskRequest$ = CancelExportTaskRequest$;
|
|
5036
|
-
exports.CancelImportTask$ = CancelImportTask$;
|
|
5037
1818
|
exports.CancelImportTaskCommand = CancelImportTaskCommand;
|
|
5038
|
-
exports.CancelImportTaskRequest$ = CancelImportTaskRequest$;
|
|
5039
|
-
exports.CancelImportTaskResponse$ = CancelImportTaskResponse$;
|
|
5040
1819
|
exports.CloudWatchLogs = CloudWatchLogs;
|
|
5041
1820
|
exports.CloudWatchLogsClient = CloudWatchLogsClient;
|
|
5042
|
-
exports.CloudWatchLogsServiceException = CloudWatchLogsServiceException;
|
|
5043
|
-
exports.CloudWatchLogsServiceException$ = CloudWatchLogsServiceException$;
|
|
5044
|
-
exports.ConfigurationTemplate$ = ConfigurationTemplate$;
|
|
5045
|
-
exports.ConfigurationTemplateDeliveryConfigValues$ = ConfigurationTemplateDeliveryConfigValues$;
|
|
5046
|
-
exports.ConflictException = ConflictException;
|
|
5047
|
-
exports.ConflictException$ = ConflictException$;
|
|
5048
|
-
exports.CopyValue$ = CopyValue$;
|
|
5049
|
-
exports.CopyValueEntry$ = CopyValueEntry$;
|
|
5050
|
-
exports.CreateDelivery$ = CreateDelivery$;
|
|
5051
1821
|
exports.CreateDeliveryCommand = CreateDeliveryCommand;
|
|
5052
|
-
exports.CreateDeliveryRequest$ = CreateDeliveryRequest$;
|
|
5053
|
-
exports.CreateDeliveryResponse$ = CreateDeliveryResponse$;
|
|
5054
|
-
exports.CreateExportTask$ = CreateExportTask$;
|
|
5055
1822
|
exports.CreateExportTaskCommand = CreateExportTaskCommand;
|
|
5056
|
-
exports.CreateExportTaskRequest$ = CreateExportTaskRequest$;
|
|
5057
|
-
exports.CreateExportTaskResponse$ = CreateExportTaskResponse$;
|
|
5058
|
-
exports.CreateImportTask$ = CreateImportTask$;
|
|
5059
1823
|
exports.CreateImportTaskCommand = CreateImportTaskCommand;
|
|
5060
|
-
exports.CreateImportTaskRequest$ = CreateImportTaskRequest$;
|
|
5061
|
-
exports.CreateImportTaskResponse$ = CreateImportTaskResponse$;
|
|
5062
|
-
exports.CreateLogAnomalyDetector$ = CreateLogAnomalyDetector$;
|
|
5063
1824
|
exports.CreateLogAnomalyDetectorCommand = CreateLogAnomalyDetectorCommand;
|
|
5064
|
-
exports.CreateLogAnomalyDetectorRequest$ = CreateLogAnomalyDetectorRequest$;
|
|
5065
|
-
exports.CreateLogAnomalyDetectorResponse$ = CreateLogAnomalyDetectorResponse$;
|
|
5066
|
-
exports.CreateLogGroup$ = CreateLogGroup$;
|
|
5067
1825
|
exports.CreateLogGroupCommand = CreateLogGroupCommand;
|
|
5068
|
-
exports.CreateLogGroupRequest$ = CreateLogGroupRequest$;
|
|
5069
|
-
exports.CreateLogStream$ = CreateLogStream$;
|
|
5070
1826
|
exports.CreateLogStreamCommand = CreateLogStreamCommand;
|
|
5071
|
-
exports.CreateLogStreamRequest$ = CreateLogStreamRequest$;
|
|
5072
|
-
exports.CreateScheduledQuery$ = CreateScheduledQuery$;
|
|
5073
1827
|
exports.CreateScheduledQueryCommand = CreateScheduledQueryCommand;
|
|
5074
|
-
exports.CreateScheduledQueryRequest$ = CreateScheduledQueryRequest$;
|
|
5075
|
-
exports.CreateScheduledQueryResponse$ = CreateScheduledQueryResponse$;
|
|
5076
|
-
exports.DataAlreadyAcceptedException = DataAlreadyAcceptedException;
|
|
5077
|
-
exports.DataAlreadyAcceptedException$ = DataAlreadyAcceptedException$;
|
|
5078
1828
|
exports.DataProtectionStatus = DataProtectionStatus;
|
|
5079
|
-
exports.DataSource$ = DataSource$;
|
|
5080
|
-
exports.DataSourceFilter$ = DataSourceFilter$;
|
|
5081
|
-
exports.DateTimeConverter$ = DateTimeConverter$;
|
|
5082
|
-
exports.DeleteAccountPolicy$ = DeleteAccountPolicy$;
|
|
5083
1829
|
exports.DeleteAccountPolicyCommand = DeleteAccountPolicyCommand;
|
|
5084
|
-
exports.DeleteAccountPolicyRequest$ = DeleteAccountPolicyRequest$;
|
|
5085
|
-
exports.DeleteDataProtectionPolicy$ = DeleteDataProtectionPolicy$;
|
|
5086
1830
|
exports.DeleteDataProtectionPolicyCommand = DeleteDataProtectionPolicyCommand;
|
|
5087
|
-
exports.DeleteDataProtectionPolicyRequest$ = DeleteDataProtectionPolicyRequest$;
|
|
5088
|
-
exports.DeleteDelivery$ = DeleteDelivery$;
|
|
5089
1831
|
exports.DeleteDeliveryCommand = DeleteDeliveryCommand;
|
|
5090
|
-
exports.DeleteDeliveryDestination$ = DeleteDeliveryDestination$;
|
|
5091
1832
|
exports.DeleteDeliveryDestinationCommand = DeleteDeliveryDestinationCommand;
|
|
5092
|
-
exports.DeleteDeliveryDestinationPolicy$ = DeleteDeliveryDestinationPolicy$;
|
|
5093
1833
|
exports.DeleteDeliveryDestinationPolicyCommand = DeleteDeliveryDestinationPolicyCommand;
|
|
5094
|
-
exports.DeleteDeliveryDestinationPolicyRequest$ = DeleteDeliveryDestinationPolicyRequest$;
|
|
5095
|
-
exports.DeleteDeliveryDestinationRequest$ = DeleteDeliveryDestinationRequest$;
|
|
5096
|
-
exports.DeleteDeliveryRequest$ = DeleteDeliveryRequest$;
|
|
5097
|
-
exports.DeleteDeliverySource$ = DeleteDeliverySource$;
|
|
5098
1834
|
exports.DeleteDeliverySourceCommand = DeleteDeliverySourceCommand;
|
|
5099
|
-
exports.DeleteDeliverySourceRequest$ = DeleteDeliverySourceRequest$;
|
|
5100
|
-
exports.DeleteDestination$ = DeleteDestination$;
|
|
5101
1835
|
exports.DeleteDestinationCommand = DeleteDestinationCommand;
|
|
5102
|
-
exports.DeleteDestinationRequest$ = DeleteDestinationRequest$;
|
|
5103
|
-
exports.DeleteIndexPolicy$ = DeleteIndexPolicy$;
|
|
5104
1836
|
exports.DeleteIndexPolicyCommand = DeleteIndexPolicyCommand;
|
|
5105
|
-
exports.DeleteIndexPolicyRequest$ = DeleteIndexPolicyRequest$;
|
|
5106
|
-
exports.DeleteIndexPolicyResponse$ = DeleteIndexPolicyResponse$;
|
|
5107
|
-
exports.DeleteIntegration$ = DeleteIntegration$;
|
|
5108
1837
|
exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
|
|
5109
|
-
exports.DeleteIntegrationRequest$ = DeleteIntegrationRequest$;
|
|
5110
|
-
exports.DeleteIntegrationResponse$ = DeleteIntegrationResponse$;
|
|
5111
|
-
exports.DeleteKeys$ = DeleteKeys$;
|
|
5112
|
-
exports.DeleteLogAnomalyDetector$ = DeleteLogAnomalyDetector$;
|
|
5113
1838
|
exports.DeleteLogAnomalyDetectorCommand = DeleteLogAnomalyDetectorCommand;
|
|
5114
|
-
exports.DeleteLogAnomalyDetectorRequest$ = DeleteLogAnomalyDetectorRequest$;
|
|
5115
|
-
exports.DeleteLogGroup$ = DeleteLogGroup$;
|
|
5116
1839
|
exports.DeleteLogGroupCommand = DeleteLogGroupCommand;
|
|
5117
|
-
exports.DeleteLogGroupRequest$ = DeleteLogGroupRequest$;
|
|
5118
|
-
exports.DeleteLogStream$ = DeleteLogStream$;
|
|
5119
1840
|
exports.DeleteLogStreamCommand = DeleteLogStreamCommand;
|
|
5120
|
-
exports.DeleteLogStreamRequest$ = DeleteLogStreamRequest$;
|
|
5121
|
-
exports.DeleteMetricFilter$ = DeleteMetricFilter$;
|
|
5122
1841
|
exports.DeleteMetricFilterCommand = DeleteMetricFilterCommand;
|
|
5123
|
-
exports.DeleteMetricFilterRequest$ = DeleteMetricFilterRequest$;
|
|
5124
|
-
exports.DeleteQueryDefinition$ = DeleteQueryDefinition$;
|
|
5125
1842
|
exports.DeleteQueryDefinitionCommand = DeleteQueryDefinitionCommand;
|
|
5126
|
-
exports.DeleteQueryDefinitionRequest$ = DeleteQueryDefinitionRequest$;
|
|
5127
|
-
exports.DeleteQueryDefinitionResponse$ = DeleteQueryDefinitionResponse$;
|
|
5128
|
-
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
5129
1843
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
5130
|
-
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
5131
|
-
exports.DeleteRetentionPolicy$ = DeleteRetentionPolicy$;
|
|
5132
1844
|
exports.DeleteRetentionPolicyCommand = DeleteRetentionPolicyCommand;
|
|
5133
|
-
exports.DeleteRetentionPolicyRequest$ = DeleteRetentionPolicyRequest$;
|
|
5134
|
-
exports.DeleteScheduledQuery$ = DeleteScheduledQuery$;
|
|
5135
1845
|
exports.DeleteScheduledQueryCommand = DeleteScheduledQueryCommand;
|
|
5136
|
-
exports.DeleteScheduledQueryRequest$ = DeleteScheduledQueryRequest$;
|
|
5137
|
-
exports.DeleteScheduledQueryResponse$ = DeleteScheduledQueryResponse$;
|
|
5138
|
-
exports.DeleteSubscriptionFilter$ = DeleteSubscriptionFilter$;
|
|
5139
1846
|
exports.DeleteSubscriptionFilterCommand = DeleteSubscriptionFilterCommand;
|
|
5140
|
-
exports.DeleteSubscriptionFilterRequest$ = DeleteSubscriptionFilterRequest$;
|
|
5141
|
-
exports.DeleteTransformer$ = DeleteTransformer$;
|
|
5142
1847
|
exports.DeleteTransformerCommand = DeleteTransformerCommand;
|
|
5143
|
-
exports.DeleteTransformerRequest$ = DeleteTransformerRequest$;
|
|
5144
|
-
exports.Delivery$ = Delivery$;
|
|
5145
|
-
exports.DeliveryDestination$ = DeliveryDestination$;
|
|
5146
|
-
exports.DeliveryDestinationConfiguration$ = DeliveryDestinationConfiguration$;
|
|
5147
1848
|
exports.DeliveryDestinationType = DeliveryDestinationType;
|
|
5148
|
-
exports.DeliverySource$ = DeliverySource$;
|
|
5149
|
-
exports.DescribeAccountPolicies$ = DescribeAccountPolicies$;
|
|
5150
1849
|
exports.DescribeAccountPoliciesCommand = DescribeAccountPoliciesCommand;
|
|
5151
|
-
exports.DescribeAccountPoliciesRequest$ = DescribeAccountPoliciesRequest$;
|
|
5152
|
-
exports.DescribeAccountPoliciesResponse$ = DescribeAccountPoliciesResponse$;
|
|
5153
|
-
exports.DescribeConfigurationTemplates$ = DescribeConfigurationTemplates$;
|
|
5154
1850
|
exports.DescribeConfigurationTemplatesCommand = DescribeConfigurationTemplatesCommand;
|
|
5155
|
-
exports.DescribeConfigurationTemplatesRequest$ = DescribeConfigurationTemplatesRequest$;
|
|
5156
|
-
exports.DescribeConfigurationTemplatesResponse$ = DescribeConfigurationTemplatesResponse$;
|
|
5157
|
-
exports.DescribeDeliveries$ = DescribeDeliveries$;
|
|
5158
1851
|
exports.DescribeDeliveriesCommand = DescribeDeliveriesCommand;
|
|
5159
|
-
exports.DescribeDeliveriesRequest$ = DescribeDeliveriesRequest$;
|
|
5160
|
-
exports.DescribeDeliveriesResponse$ = DescribeDeliveriesResponse$;
|
|
5161
|
-
exports.DescribeDeliveryDestinations$ = DescribeDeliveryDestinations$;
|
|
5162
1852
|
exports.DescribeDeliveryDestinationsCommand = DescribeDeliveryDestinationsCommand;
|
|
5163
|
-
exports.DescribeDeliveryDestinationsRequest$ = DescribeDeliveryDestinationsRequest$;
|
|
5164
|
-
exports.DescribeDeliveryDestinationsResponse$ = DescribeDeliveryDestinationsResponse$;
|
|
5165
|
-
exports.DescribeDeliverySources$ = DescribeDeliverySources$;
|
|
5166
1853
|
exports.DescribeDeliverySourcesCommand = DescribeDeliverySourcesCommand;
|
|
5167
|
-
exports.DescribeDeliverySourcesRequest$ = DescribeDeliverySourcesRequest$;
|
|
5168
|
-
exports.DescribeDeliverySourcesResponse$ = DescribeDeliverySourcesResponse$;
|
|
5169
|
-
exports.DescribeDestinations$ = DescribeDestinations$;
|
|
5170
1854
|
exports.DescribeDestinationsCommand = DescribeDestinationsCommand;
|
|
5171
|
-
exports.DescribeDestinationsRequest$ = DescribeDestinationsRequest$;
|
|
5172
|
-
exports.DescribeDestinationsResponse$ = DescribeDestinationsResponse$;
|
|
5173
|
-
exports.DescribeExportTasks$ = DescribeExportTasks$;
|
|
5174
1855
|
exports.DescribeExportTasksCommand = DescribeExportTasksCommand;
|
|
5175
|
-
exports.DescribeExportTasksRequest$ = DescribeExportTasksRequest$;
|
|
5176
|
-
exports.DescribeExportTasksResponse$ = DescribeExportTasksResponse$;
|
|
5177
|
-
exports.DescribeFieldIndexes$ = DescribeFieldIndexes$;
|
|
5178
1856
|
exports.DescribeFieldIndexesCommand = DescribeFieldIndexesCommand;
|
|
5179
|
-
exports.DescribeFieldIndexesRequest$ = DescribeFieldIndexesRequest$;
|
|
5180
|
-
exports.DescribeFieldIndexesResponse$ = DescribeFieldIndexesResponse$;
|
|
5181
|
-
exports.DescribeImportTaskBatches$ = DescribeImportTaskBatches$;
|
|
5182
1857
|
exports.DescribeImportTaskBatchesCommand = DescribeImportTaskBatchesCommand;
|
|
5183
|
-
exports.DescribeImportTaskBatchesRequest$ = DescribeImportTaskBatchesRequest$;
|
|
5184
|
-
exports.DescribeImportTaskBatchesResponse$ = DescribeImportTaskBatchesResponse$;
|
|
5185
|
-
exports.DescribeImportTasks$ = DescribeImportTasks$;
|
|
5186
1858
|
exports.DescribeImportTasksCommand = DescribeImportTasksCommand;
|
|
5187
|
-
exports.DescribeImportTasksRequest$ = DescribeImportTasksRequest$;
|
|
5188
|
-
exports.DescribeImportTasksResponse$ = DescribeImportTasksResponse$;
|
|
5189
|
-
exports.DescribeIndexPolicies$ = DescribeIndexPolicies$;
|
|
5190
1859
|
exports.DescribeIndexPoliciesCommand = DescribeIndexPoliciesCommand;
|
|
5191
|
-
exports.DescribeIndexPoliciesRequest$ = DescribeIndexPoliciesRequest$;
|
|
5192
|
-
exports.DescribeIndexPoliciesResponse$ = DescribeIndexPoliciesResponse$;
|
|
5193
|
-
exports.DescribeLogGroups$ = DescribeLogGroups$;
|
|
5194
1860
|
exports.DescribeLogGroupsCommand = DescribeLogGroupsCommand;
|
|
5195
|
-
exports.DescribeLogGroupsRequest$ = DescribeLogGroupsRequest$;
|
|
5196
|
-
exports.DescribeLogGroupsResponse$ = DescribeLogGroupsResponse$;
|
|
5197
|
-
exports.DescribeLogStreams$ = DescribeLogStreams$;
|
|
5198
1861
|
exports.DescribeLogStreamsCommand = DescribeLogStreamsCommand;
|
|
5199
|
-
exports.DescribeLogStreamsRequest$ = DescribeLogStreamsRequest$;
|
|
5200
|
-
exports.DescribeLogStreamsResponse$ = DescribeLogStreamsResponse$;
|
|
5201
|
-
exports.DescribeMetricFilters$ = DescribeMetricFilters$;
|
|
5202
1862
|
exports.DescribeMetricFiltersCommand = DescribeMetricFiltersCommand;
|
|
5203
|
-
exports.DescribeMetricFiltersRequest$ = DescribeMetricFiltersRequest$;
|
|
5204
|
-
exports.DescribeMetricFiltersResponse$ = DescribeMetricFiltersResponse$;
|
|
5205
|
-
exports.DescribeQueries$ = DescribeQueries$;
|
|
5206
1863
|
exports.DescribeQueriesCommand = DescribeQueriesCommand;
|
|
5207
|
-
exports.DescribeQueriesRequest$ = DescribeQueriesRequest$;
|
|
5208
|
-
exports.DescribeQueriesResponse$ = DescribeQueriesResponse$;
|
|
5209
|
-
exports.DescribeQueryDefinitions$ = DescribeQueryDefinitions$;
|
|
5210
1864
|
exports.DescribeQueryDefinitionsCommand = DescribeQueryDefinitionsCommand;
|
|
5211
|
-
exports.DescribeQueryDefinitionsRequest$ = DescribeQueryDefinitionsRequest$;
|
|
5212
|
-
exports.DescribeQueryDefinitionsResponse$ = DescribeQueryDefinitionsResponse$;
|
|
5213
|
-
exports.DescribeResourcePolicies$ = DescribeResourcePolicies$;
|
|
5214
1865
|
exports.DescribeResourcePoliciesCommand = DescribeResourcePoliciesCommand;
|
|
5215
|
-
exports.DescribeResourcePoliciesRequest$ = DescribeResourcePoliciesRequest$;
|
|
5216
|
-
exports.DescribeResourcePoliciesResponse$ = DescribeResourcePoliciesResponse$;
|
|
5217
|
-
exports.DescribeSubscriptionFilters$ = DescribeSubscriptionFilters$;
|
|
5218
1866
|
exports.DescribeSubscriptionFiltersCommand = DescribeSubscriptionFiltersCommand;
|
|
5219
|
-
exports.DescribeSubscriptionFiltersRequest$ = DescribeSubscriptionFiltersRequest$;
|
|
5220
|
-
exports.DescribeSubscriptionFiltersResponse$ = DescribeSubscriptionFiltersResponse$;
|
|
5221
|
-
exports.Destination$ = Destination$;
|
|
5222
|
-
exports.DestinationConfiguration$ = DestinationConfiguration$;
|
|
5223
|
-
exports.DisassociateKmsKey$ = DisassociateKmsKey$;
|
|
5224
1867
|
exports.DisassociateKmsKeyCommand = DisassociateKmsKeyCommand;
|
|
5225
|
-
exports.DisassociateKmsKeyRequest$ = DisassociateKmsKeyRequest$;
|
|
5226
|
-
exports.DisassociateSourceFromS3TableIntegration$ = DisassociateSourceFromS3TableIntegration$;
|
|
5227
1868
|
exports.DisassociateSourceFromS3TableIntegrationCommand = DisassociateSourceFromS3TableIntegrationCommand;
|
|
5228
|
-
exports.DisassociateSourceFromS3TableIntegrationRequest$ = DisassociateSourceFromS3TableIntegrationRequest$;
|
|
5229
|
-
exports.DisassociateSourceFromS3TableIntegrationResponse$ = DisassociateSourceFromS3TableIntegrationResponse$;
|
|
5230
1869
|
exports.Distribution = Distribution;
|
|
5231
|
-
exports.Entity$ = Entity$;
|
|
5232
1870
|
exports.EntityRejectionErrorType = EntityRejectionErrorType;
|
|
5233
1871
|
exports.EvaluationFrequency = EvaluationFrequency;
|
|
5234
1872
|
exports.EventSource = EventSource;
|
|
5235
1873
|
exports.ExecutionStatus = ExecutionStatus;
|
|
5236
|
-
exports.ExportTask$ = ExportTask$;
|
|
5237
|
-
exports.ExportTaskExecutionInfo$ = ExportTaskExecutionInfo$;
|
|
5238
|
-
exports.ExportTaskStatus$ = ExportTaskStatus$;
|
|
5239
1874
|
exports.ExportTaskStatusCode = ExportTaskStatusCode;
|
|
5240
|
-
exports.FieldIndex$ = FieldIndex$;
|
|
5241
|
-
exports.FieldsData$ = FieldsData$;
|
|
5242
|
-
exports.FilterLogEvents$ = FilterLogEvents$;
|
|
5243
1875
|
exports.FilterLogEventsCommand = FilterLogEventsCommand;
|
|
5244
|
-
exports.FilterLogEventsRequest$ = FilterLogEventsRequest$;
|
|
5245
|
-
exports.FilterLogEventsResponse$ = FilterLogEventsResponse$;
|
|
5246
|
-
exports.FilteredLogEvent$ = FilteredLogEvent$;
|
|
5247
1876
|
exports.FlattenedElement = FlattenedElement;
|
|
5248
|
-
exports.GetDataProtectionPolicy$ = GetDataProtectionPolicy$;
|
|
5249
1877
|
exports.GetDataProtectionPolicyCommand = GetDataProtectionPolicyCommand;
|
|
5250
|
-
exports.GetDataProtectionPolicyRequest$ = GetDataProtectionPolicyRequest$;
|
|
5251
|
-
exports.GetDataProtectionPolicyResponse$ = GetDataProtectionPolicyResponse$;
|
|
5252
|
-
exports.GetDelivery$ = GetDelivery$;
|
|
5253
1878
|
exports.GetDeliveryCommand = GetDeliveryCommand;
|
|
5254
|
-
exports.GetDeliveryDestination$ = GetDeliveryDestination$;
|
|
5255
1879
|
exports.GetDeliveryDestinationCommand = GetDeliveryDestinationCommand;
|
|
5256
|
-
exports.GetDeliveryDestinationPolicy$ = GetDeliveryDestinationPolicy$;
|
|
5257
1880
|
exports.GetDeliveryDestinationPolicyCommand = GetDeliveryDestinationPolicyCommand;
|
|
5258
|
-
exports.GetDeliveryDestinationPolicyRequest$ = GetDeliveryDestinationPolicyRequest$;
|
|
5259
|
-
exports.GetDeliveryDestinationPolicyResponse$ = GetDeliveryDestinationPolicyResponse$;
|
|
5260
|
-
exports.GetDeliveryDestinationRequest$ = GetDeliveryDestinationRequest$;
|
|
5261
|
-
exports.GetDeliveryDestinationResponse$ = GetDeliveryDestinationResponse$;
|
|
5262
|
-
exports.GetDeliveryRequest$ = GetDeliveryRequest$;
|
|
5263
|
-
exports.GetDeliveryResponse$ = GetDeliveryResponse$;
|
|
5264
|
-
exports.GetDeliverySource$ = GetDeliverySource$;
|
|
5265
1881
|
exports.GetDeliverySourceCommand = GetDeliverySourceCommand;
|
|
5266
|
-
exports.GetDeliverySourceRequest$ = GetDeliverySourceRequest$;
|
|
5267
|
-
exports.GetDeliverySourceResponse$ = GetDeliverySourceResponse$;
|
|
5268
|
-
exports.GetIntegration$ = GetIntegration$;
|
|
5269
1882
|
exports.GetIntegrationCommand = GetIntegrationCommand;
|
|
5270
|
-
exports.GetIntegrationRequest$ = GetIntegrationRequest$;
|
|
5271
|
-
exports.GetIntegrationResponse$ = GetIntegrationResponse$;
|
|
5272
|
-
exports.GetLogAnomalyDetector$ = GetLogAnomalyDetector$;
|
|
5273
1883
|
exports.GetLogAnomalyDetectorCommand = GetLogAnomalyDetectorCommand;
|
|
5274
|
-
exports.GetLogAnomalyDetectorRequest$ = GetLogAnomalyDetectorRequest$;
|
|
5275
|
-
exports.GetLogAnomalyDetectorResponse$ = GetLogAnomalyDetectorResponse$;
|
|
5276
|
-
exports.GetLogEvents$ = GetLogEvents$;
|
|
5277
1884
|
exports.GetLogEventsCommand = GetLogEventsCommand;
|
|
5278
|
-
exports.GetLogEventsRequest$ = GetLogEventsRequest$;
|
|
5279
|
-
exports.GetLogEventsResponse$ = GetLogEventsResponse$;
|
|
5280
|
-
exports.GetLogFields$ = GetLogFields$;
|
|
5281
1885
|
exports.GetLogFieldsCommand = GetLogFieldsCommand;
|
|
5282
|
-
exports.GetLogFieldsRequest$ = GetLogFieldsRequest$;
|
|
5283
|
-
exports.GetLogFieldsResponse$ = GetLogFieldsResponse$;
|
|
5284
|
-
exports.GetLogGroupFields$ = GetLogGroupFields$;
|
|
5285
1886
|
exports.GetLogGroupFieldsCommand = GetLogGroupFieldsCommand;
|
|
5286
|
-
exports.GetLogGroupFieldsRequest$ = GetLogGroupFieldsRequest$;
|
|
5287
|
-
exports.GetLogGroupFieldsResponse$ = GetLogGroupFieldsResponse$;
|
|
5288
|
-
exports.GetLogObject$ = GetLogObject$;
|
|
5289
1887
|
exports.GetLogObjectCommand = GetLogObjectCommand;
|
|
5290
|
-
exports.GetLogObjectRequest$ = GetLogObjectRequest$;
|
|
5291
|
-
exports.GetLogObjectResponse$ = GetLogObjectResponse$;
|
|
5292
|
-
exports.GetLogObjectResponseStream$ = GetLogObjectResponseStream$;
|
|
5293
|
-
exports.GetLogRecord$ = GetLogRecord$;
|
|
5294
1888
|
exports.GetLogRecordCommand = GetLogRecordCommand;
|
|
5295
|
-
exports.GetLogRecordRequest$ = GetLogRecordRequest$;
|
|
5296
|
-
exports.GetLogRecordResponse$ = GetLogRecordResponse$;
|
|
5297
|
-
exports.GetQueryResults$ = GetQueryResults$;
|
|
5298
1889
|
exports.GetQueryResultsCommand = GetQueryResultsCommand;
|
|
5299
|
-
exports.GetQueryResultsRequest$ = GetQueryResultsRequest$;
|
|
5300
|
-
exports.GetQueryResultsResponse$ = GetQueryResultsResponse$;
|
|
5301
|
-
exports.GetScheduledQuery$ = GetScheduledQuery$;
|
|
5302
1890
|
exports.GetScheduledQueryCommand = GetScheduledQueryCommand;
|
|
5303
|
-
exports.GetScheduledQueryHistory$ = GetScheduledQueryHistory$;
|
|
5304
1891
|
exports.GetScheduledQueryHistoryCommand = GetScheduledQueryHistoryCommand;
|
|
5305
|
-
exports.GetScheduledQueryHistoryRequest$ = GetScheduledQueryHistoryRequest$;
|
|
5306
|
-
exports.GetScheduledQueryHistoryResponse$ = GetScheduledQueryHistoryResponse$;
|
|
5307
|
-
exports.GetScheduledQueryRequest$ = GetScheduledQueryRequest$;
|
|
5308
|
-
exports.GetScheduledQueryResponse$ = GetScheduledQueryResponse$;
|
|
5309
|
-
exports.GetTransformer$ = GetTransformer$;
|
|
5310
1892
|
exports.GetTransformerCommand = GetTransformerCommand;
|
|
5311
|
-
exports.GetTransformerRequest$ = GetTransformerRequest$;
|
|
5312
|
-
exports.GetTransformerResponse$ = GetTransformerResponse$;
|
|
5313
|
-
exports.Grok$ = Grok$;
|
|
5314
|
-
exports.GroupingIdentifier$ = GroupingIdentifier$;
|
|
5315
|
-
exports.Import$ = Import$;
|
|
5316
|
-
exports.ImportBatch$ = ImportBatch$;
|
|
5317
|
-
exports.ImportFilter$ = ImportFilter$;
|
|
5318
|
-
exports.ImportStatistics$ = ImportStatistics$;
|
|
5319
1893
|
exports.ImportStatus = ImportStatus;
|
|
5320
|
-
exports.IndexPolicy$ = IndexPolicy$;
|
|
5321
1894
|
exports.IndexSource = IndexSource;
|
|
5322
1895
|
exports.IndexType = IndexType;
|
|
5323
1896
|
exports.InheritedProperty = InheritedProperty;
|
|
5324
|
-
exports.InputLogEvent$ = InputLogEvent$;
|
|
5325
|
-
exports.IntegrationDetails$ = IntegrationDetails$;
|
|
5326
1897
|
exports.IntegrationStatus = IntegrationStatus;
|
|
5327
|
-
exports.IntegrationSummary$ = IntegrationSummary$;
|
|
5328
1898
|
exports.IntegrationType = IntegrationType;
|
|
5329
|
-
exports.InternalServerException = InternalServerException;
|
|
5330
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
5331
|
-
exports.InternalStreamingException = InternalStreamingException;
|
|
5332
|
-
exports.InternalStreamingException$ = InternalStreamingException$;
|
|
5333
|
-
exports.InvalidOperationException = InvalidOperationException;
|
|
5334
|
-
exports.InvalidOperationException$ = InvalidOperationException$;
|
|
5335
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
5336
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
5337
|
-
exports.InvalidSequenceTokenException = InvalidSequenceTokenException;
|
|
5338
|
-
exports.InvalidSequenceTokenException$ = InvalidSequenceTokenException$;
|
|
5339
|
-
exports.LimitExceededException = LimitExceededException;
|
|
5340
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
5341
|
-
exports.ListAggregateLogGroupSummaries$ = ListAggregateLogGroupSummaries$;
|
|
5342
1899
|
exports.ListAggregateLogGroupSummariesCommand = ListAggregateLogGroupSummariesCommand;
|
|
5343
1900
|
exports.ListAggregateLogGroupSummariesGroupBy = ListAggregateLogGroupSummariesGroupBy;
|
|
5344
|
-
exports.ListAggregateLogGroupSummariesRequest$ = ListAggregateLogGroupSummariesRequest$;
|
|
5345
|
-
exports.ListAggregateLogGroupSummariesResponse$ = ListAggregateLogGroupSummariesResponse$;
|
|
5346
|
-
exports.ListAnomalies$ = ListAnomalies$;
|
|
5347
1901
|
exports.ListAnomaliesCommand = ListAnomaliesCommand;
|
|
5348
|
-
exports.ListAnomaliesRequest$ = ListAnomaliesRequest$;
|
|
5349
|
-
exports.ListAnomaliesResponse$ = ListAnomaliesResponse$;
|
|
5350
|
-
exports.ListIntegrations$ = ListIntegrations$;
|
|
5351
1902
|
exports.ListIntegrationsCommand = ListIntegrationsCommand;
|
|
5352
|
-
exports.ListIntegrationsRequest$ = ListIntegrationsRequest$;
|
|
5353
|
-
exports.ListIntegrationsResponse$ = ListIntegrationsResponse$;
|
|
5354
|
-
exports.ListLogAnomalyDetectors$ = ListLogAnomalyDetectors$;
|
|
5355
1903
|
exports.ListLogAnomalyDetectorsCommand = ListLogAnomalyDetectorsCommand;
|
|
5356
|
-
exports.ListLogAnomalyDetectorsRequest$ = ListLogAnomalyDetectorsRequest$;
|
|
5357
|
-
exports.ListLogAnomalyDetectorsResponse$ = ListLogAnomalyDetectorsResponse$;
|
|
5358
|
-
exports.ListLogGroups$ = ListLogGroups$;
|
|
5359
1904
|
exports.ListLogGroupsCommand = ListLogGroupsCommand;
|
|
5360
|
-
exports.ListLogGroupsForQuery$ = ListLogGroupsForQuery$;
|
|
5361
1905
|
exports.ListLogGroupsForQueryCommand = ListLogGroupsForQueryCommand;
|
|
5362
|
-
exports.ListLogGroupsForQueryRequest$ = ListLogGroupsForQueryRequest$;
|
|
5363
|
-
exports.ListLogGroupsForQueryResponse$ = ListLogGroupsForQueryResponse$;
|
|
5364
|
-
exports.ListLogGroupsRequest$ = ListLogGroupsRequest$;
|
|
5365
|
-
exports.ListLogGroupsResponse$ = ListLogGroupsResponse$;
|
|
5366
|
-
exports.ListScheduledQueries$ = ListScheduledQueries$;
|
|
5367
1906
|
exports.ListScheduledQueriesCommand = ListScheduledQueriesCommand;
|
|
5368
|
-
exports.ListScheduledQueriesRequest$ = ListScheduledQueriesRequest$;
|
|
5369
|
-
exports.ListScheduledQueriesResponse$ = ListScheduledQueriesResponse$;
|
|
5370
|
-
exports.ListSourcesForS3TableIntegration$ = ListSourcesForS3TableIntegration$;
|
|
5371
1907
|
exports.ListSourcesForS3TableIntegrationCommand = ListSourcesForS3TableIntegrationCommand;
|
|
5372
|
-
exports.ListSourcesForS3TableIntegrationRequest$ = ListSourcesForS3TableIntegrationRequest$;
|
|
5373
|
-
exports.ListSourcesForS3TableIntegrationResponse$ = ListSourcesForS3TableIntegrationResponse$;
|
|
5374
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
5375
1908
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5376
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
5377
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
5378
|
-
exports.ListTagsLogGroup$ = ListTagsLogGroup$;
|
|
5379
1909
|
exports.ListTagsLogGroupCommand = ListTagsLogGroupCommand;
|
|
5380
|
-
exports.ListTagsLogGroupRequest$ = ListTagsLogGroupRequest$;
|
|
5381
|
-
exports.ListTagsLogGroupResponse$ = ListTagsLogGroupResponse$;
|
|
5382
|
-
exports.ListToMap$ = ListToMap$;
|
|
5383
|
-
exports.LiveTailSessionLogEvent$ = LiveTailSessionLogEvent$;
|
|
5384
|
-
exports.LiveTailSessionMetadata$ = LiveTailSessionMetadata$;
|
|
5385
|
-
exports.LiveTailSessionStart$ = LiveTailSessionStart$;
|
|
5386
|
-
exports.LiveTailSessionUpdate$ = LiveTailSessionUpdate$;
|
|
5387
|
-
exports.LogEvent$ = LogEvent$;
|
|
5388
|
-
exports.LogFieldType$ = LogFieldType$;
|
|
5389
|
-
exports.LogFieldsListItem$ = LogFieldsListItem$;
|
|
5390
|
-
exports.LogGroup$ = LogGroup$;
|
|
5391
1910
|
exports.LogGroupClass = LogGroupClass;
|
|
5392
|
-
exports.LogGroupField$ = LogGroupField$;
|
|
5393
|
-
exports.LogGroupSummary$ = LogGroupSummary$;
|
|
5394
|
-
exports.LogStream$ = LogStream$;
|
|
5395
|
-
exports.LowerCaseString$ = LowerCaseString$;
|
|
5396
|
-
exports.MalformedQueryException = MalformedQueryException;
|
|
5397
|
-
exports.MalformedQueryException$ = MalformedQueryException$;
|
|
5398
|
-
exports.MetricFilter$ = MetricFilter$;
|
|
5399
|
-
exports.MetricFilterMatchRecord$ = MetricFilterMatchRecord$;
|
|
5400
|
-
exports.MetricTransformation$ = MetricTransformation$;
|
|
5401
|
-
exports.MoveKeyEntry$ = MoveKeyEntry$;
|
|
5402
|
-
exports.MoveKeys$ = MoveKeys$;
|
|
5403
1911
|
exports.OCSFVersion = OCSFVersion;
|
|
5404
|
-
exports.OpenSearchApplication$ = OpenSearchApplication$;
|
|
5405
|
-
exports.OpenSearchCollection$ = OpenSearchCollection$;
|
|
5406
|
-
exports.OpenSearchDataAccessPolicy$ = OpenSearchDataAccessPolicy$;
|
|
5407
|
-
exports.OpenSearchDataSource$ = OpenSearchDataSource$;
|
|
5408
|
-
exports.OpenSearchEncryptionPolicy$ = OpenSearchEncryptionPolicy$;
|
|
5409
|
-
exports.OpenSearchIntegrationDetails$ = OpenSearchIntegrationDetails$;
|
|
5410
|
-
exports.OpenSearchLifecyclePolicy$ = OpenSearchLifecyclePolicy$;
|
|
5411
|
-
exports.OpenSearchNetworkPolicy$ = OpenSearchNetworkPolicy$;
|
|
5412
|
-
exports.OpenSearchResourceConfig$ = OpenSearchResourceConfig$;
|
|
5413
|
-
exports.OpenSearchResourceStatus$ = OpenSearchResourceStatus$;
|
|
5414
1912
|
exports.OpenSearchResourceStatusType = OpenSearchResourceStatusType;
|
|
5415
|
-
exports.OpenSearchWorkspace$ = OpenSearchWorkspace$;
|
|
5416
|
-
exports.OperationAbortedException = OperationAbortedException;
|
|
5417
|
-
exports.OperationAbortedException$ = OperationAbortedException$;
|
|
5418
1913
|
exports.OrderBy = OrderBy;
|
|
5419
1914
|
exports.OutputFormat = OutputFormat;
|
|
5420
|
-
exports.OutputLogEvent$ = OutputLogEvent$;
|
|
5421
|
-
exports.ParseCloudfront$ = ParseCloudfront$;
|
|
5422
|
-
exports.ParseJSON$ = ParseJSON$;
|
|
5423
|
-
exports.ParseKeyValue$ = ParseKeyValue$;
|
|
5424
|
-
exports.ParsePostgres$ = ParsePostgres$;
|
|
5425
|
-
exports.ParseRoute53$ = ParseRoute53$;
|
|
5426
|
-
exports.ParseToOCSF$ = ParseToOCSF$;
|
|
5427
|
-
exports.ParseVPC$ = ParseVPC$;
|
|
5428
|
-
exports.ParseWAF$ = ParseWAF$;
|
|
5429
|
-
exports.PatternToken$ = PatternToken$;
|
|
5430
|
-
exports.Policy$ = Policy$;
|
|
5431
1915
|
exports.PolicyScope = PolicyScope;
|
|
5432
1916
|
exports.PolicyType = PolicyType;
|
|
5433
|
-
exports.Processor$ = Processor$;
|
|
5434
|
-
exports.PutAccountPolicy$ = PutAccountPolicy$;
|
|
5435
1917
|
exports.PutAccountPolicyCommand = PutAccountPolicyCommand;
|
|
5436
|
-
exports.PutAccountPolicyRequest$ = PutAccountPolicyRequest$;
|
|
5437
|
-
exports.PutAccountPolicyResponse$ = PutAccountPolicyResponse$;
|
|
5438
|
-
exports.PutDataProtectionPolicy$ = PutDataProtectionPolicy$;
|
|
5439
1918
|
exports.PutDataProtectionPolicyCommand = PutDataProtectionPolicyCommand;
|
|
5440
|
-
exports.PutDataProtectionPolicyRequest$ = PutDataProtectionPolicyRequest$;
|
|
5441
|
-
exports.PutDataProtectionPolicyResponse$ = PutDataProtectionPolicyResponse$;
|
|
5442
|
-
exports.PutDeliveryDestination$ = PutDeliveryDestination$;
|
|
5443
1919
|
exports.PutDeliveryDestinationCommand = PutDeliveryDestinationCommand;
|
|
5444
|
-
exports.PutDeliveryDestinationPolicy$ = PutDeliveryDestinationPolicy$;
|
|
5445
1920
|
exports.PutDeliveryDestinationPolicyCommand = PutDeliveryDestinationPolicyCommand;
|
|
5446
|
-
exports.PutDeliveryDestinationPolicyRequest$ = PutDeliveryDestinationPolicyRequest$;
|
|
5447
|
-
exports.PutDeliveryDestinationPolicyResponse$ = PutDeliveryDestinationPolicyResponse$;
|
|
5448
|
-
exports.PutDeliveryDestinationRequest$ = PutDeliveryDestinationRequest$;
|
|
5449
|
-
exports.PutDeliveryDestinationResponse$ = PutDeliveryDestinationResponse$;
|
|
5450
|
-
exports.PutDeliverySource$ = PutDeliverySource$;
|
|
5451
1921
|
exports.PutDeliverySourceCommand = PutDeliverySourceCommand;
|
|
5452
|
-
exports.PutDeliverySourceRequest$ = PutDeliverySourceRequest$;
|
|
5453
|
-
exports.PutDeliverySourceResponse$ = PutDeliverySourceResponse$;
|
|
5454
|
-
exports.PutDestination$ = PutDestination$;
|
|
5455
1922
|
exports.PutDestinationCommand = PutDestinationCommand;
|
|
5456
|
-
exports.PutDestinationPolicy$ = PutDestinationPolicy$;
|
|
5457
1923
|
exports.PutDestinationPolicyCommand = PutDestinationPolicyCommand;
|
|
5458
|
-
exports.PutDestinationPolicyRequest$ = PutDestinationPolicyRequest$;
|
|
5459
|
-
exports.PutDestinationRequest$ = PutDestinationRequest$;
|
|
5460
|
-
exports.PutDestinationResponse$ = PutDestinationResponse$;
|
|
5461
|
-
exports.PutIndexPolicy$ = PutIndexPolicy$;
|
|
5462
1924
|
exports.PutIndexPolicyCommand = PutIndexPolicyCommand;
|
|
5463
|
-
exports.PutIndexPolicyRequest$ = PutIndexPolicyRequest$;
|
|
5464
|
-
exports.PutIndexPolicyResponse$ = PutIndexPolicyResponse$;
|
|
5465
|
-
exports.PutIntegration$ = PutIntegration$;
|
|
5466
1925
|
exports.PutIntegrationCommand = PutIntegrationCommand;
|
|
5467
|
-
exports.PutIntegrationRequest$ = PutIntegrationRequest$;
|
|
5468
|
-
exports.PutIntegrationResponse$ = PutIntegrationResponse$;
|
|
5469
|
-
exports.PutLogEvents$ = PutLogEvents$;
|
|
5470
1926
|
exports.PutLogEventsCommand = PutLogEventsCommand;
|
|
5471
|
-
exports.PutLogEventsRequest$ = PutLogEventsRequest$;
|
|
5472
|
-
exports.PutLogEventsResponse$ = PutLogEventsResponse$;
|
|
5473
|
-
exports.PutLogGroupDeletionProtection$ = PutLogGroupDeletionProtection$;
|
|
5474
1927
|
exports.PutLogGroupDeletionProtectionCommand = PutLogGroupDeletionProtectionCommand;
|
|
5475
|
-
exports.PutLogGroupDeletionProtectionRequest$ = PutLogGroupDeletionProtectionRequest$;
|
|
5476
|
-
exports.PutMetricFilter$ = PutMetricFilter$;
|
|
5477
1928
|
exports.PutMetricFilterCommand = PutMetricFilterCommand;
|
|
5478
|
-
exports.PutMetricFilterRequest$ = PutMetricFilterRequest$;
|
|
5479
|
-
exports.PutQueryDefinition$ = PutQueryDefinition$;
|
|
5480
1929
|
exports.PutQueryDefinitionCommand = PutQueryDefinitionCommand;
|
|
5481
|
-
exports.PutQueryDefinitionRequest$ = PutQueryDefinitionRequest$;
|
|
5482
|
-
exports.PutQueryDefinitionResponse$ = PutQueryDefinitionResponse$;
|
|
5483
|
-
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
5484
1930
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
5485
|
-
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
5486
|
-
exports.PutResourcePolicyResponse$ = PutResourcePolicyResponse$;
|
|
5487
|
-
exports.PutRetentionPolicy$ = PutRetentionPolicy$;
|
|
5488
1931
|
exports.PutRetentionPolicyCommand = PutRetentionPolicyCommand;
|
|
5489
|
-
exports.PutRetentionPolicyRequest$ = PutRetentionPolicyRequest$;
|
|
5490
|
-
exports.PutSubscriptionFilter$ = PutSubscriptionFilter$;
|
|
5491
1932
|
exports.PutSubscriptionFilterCommand = PutSubscriptionFilterCommand;
|
|
5492
|
-
exports.PutSubscriptionFilterRequest$ = PutSubscriptionFilterRequest$;
|
|
5493
|
-
exports.PutTransformer$ = PutTransformer$;
|
|
5494
1933
|
exports.PutTransformerCommand = PutTransformerCommand;
|
|
5495
|
-
exports.PutTransformerRequest$ = PutTransformerRequest$;
|
|
5496
|
-
exports.QueryCompileError$ = QueryCompileError$;
|
|
5497
|
-
exports.QueryCompileErrorLocation$ = QueryCompileErrorLocation$;
|
|
5498
|
-
exports.QueryDefinition$ = QueryDefinition$;
|
|
5499
|
-
exports.QueryInfo$ = QueryInfo$;
|
|
5500
1934
|
exports.QueryLanguage = QueryLanguage;
|
|
5501
|
-
exports.QueryStatistics$ = QueryStatistics$;
|
|
5502
1935
|
exports.QueryStatus = QueryStatus;
|
|
5503
|
-
exports.RecordField$ = RecordField$;
|
|
5504
|
-
exports.RejectedEntityInfo$ = RejectedEntityInfo$;
|
|
5505
|
-
exports.RejectedLogEventsInfo$ = RejectedLogEventsInfo$;
|
|
5506
|
-
exports.RenameKeyEntry$ = RenameKeyEntry$;
|
|
5507
|
-
exports.RenameKeys$ = RenameKeys$;
|
|
5508
|
-
exports.ResourceAlreadyExistsException = ResourceAlreadyExistsException;
|
|
5509
|
-
exports.ResourceAlreadyExistsException$ = ResourceAlreadyExistsException$;
|
|
5510
|
-
exports.ResourceConfig$ = ResourceConfig$;
|
|
5511
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5512
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
5513
|
-
exports.ResourcePolicy$ = ResourcePolicy$;
|
|
5514
|
-
exports.ResultField$ = ResultField$;
|
|
5515
|
-
exports.S3Configuration$ = S3Configuration$;
|
|
5516
|
-
exports.S3DeliveryConfiguration$ = S3DeliveryConfiguration$;
|
|
5517
|
-
exports.S3TableIntegrationSource$ = S3TableIntegrationSource$;
|
|
5518
1936
|
exports.S3TableIntegrationSourceStatus = S3TableIntegrationSourceStatus;
|
|
5519
|
-
exports.ScheduledQueryDestination$ = ScheduledQueryDestination$;
|
|
5520
1937
|
exports.ScheduledQueryDestinationType = ScheduledQueryDestinationType;
|
|
5521
1938
|
exports.ScheduledQueryState = ScheduledQueryState;
|
|
5522
|
-
exports.ScheduledQuerySummary$ = ScheduledQuerySummary$;
|
|
5523
1939
|
exports.Scope = Scope;
|
|
5524
|
-
exports.SearchedLogStream$ = SearchedLogStream$;
|
|
5525
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
5526
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
5527
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
5528
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
5529
|
-
exports.SessionStreamingException = SessionStreamingException;
|
|
5530
|
-
exports.SessionStreamingException$ = SessionStreamingException$;
|
|
5531
|
-
exports.SessionTimeoutException = SessionTimeoutException;
|
|
5532
|
-
exports.SessionTimeoutException$ = SessionTimeoutException$;
|
|
5533
|
-
exports.SplitString$ = SplitString$;
|
|
5534
|
-
exports.SplitStringEntry$ = SplitStringEntry$;
|
|
5535
1940
|
exports.StandardUnit = StandardUnit;
|
|
5536
|
-
exports.StartLiveTail$ = StartLiveTail$;
|
|
5537
1941
|
exports.StartLiveTailCommand = StartLiveTailCommand;
|
|
5538
|
-
exports.StartLiveTailRequest$ = StartLiveTailRequest$;
|
|
5539
|
-
exports.StartLiveTailResponse$ = StartLiveTailResponse$;
|
|
5540
|
-
exports.StartLiveTailResponseStream$ = StartLiveTailResponseStream$;
|
|
5541
|
-
exports.StartQuery$ = StartQuery$;
|
|
5542
1942
|
exports.StartQueryCommand = StartQueryCommand;
|
|
5543
|
-
exports.StartQueryRequest$ = StartQueryRequest$;
|
|
5544
|
-
exports.StartQueryResponse$ = StartQueryResponse$;
|
|
5545
1943
|
exports.State = State;
|
|
5546
|
-
exports.StopQuery$ = StopQuery$;
|
|
5547
1944
|
exports.StopQueryCommand = StopQueryCommand;
|
|
5548
|
-
exports.StopQueryRequest$ = StopQueryRequest$;
|
|
5549
|
-
exports.StopQueryResponse$ = StopQueryResponse$;
|
|
5550
|
-
exports.SubscriptionFilter$ = SubscriptionFilter$;
|
|
5551
|
-
exports.SubstituteString$ = SubstituteString$;
|
|
5552
|
-
exports.SubstituteStringEntry$ = SubstituteStringEntry$;
|
|
5553
|
-
exports.SuppressionPeriod$ = SuppressionPeriod$;
|
|
5554
1945
|
exports.SuppressionState = SuppressionState;
|
|
5555
1946
|
exports.SuppressionType = SuppressionType;
|
|
5556
1947
|
exports.SuppressionUnit = SuppressionUnit;
|
|
5557
|
-
exports.TagLogGroup$ = TagLogGroup$;
|
|
5558
1948
|
exports.TagLogGroupCommand = TagLogGroupCommand;
|
|
5559
|
-
exports.TagLogGroupRequest$ = TagLogGroupRequest$;
|
|
5560
|
-
exports.TagResource$ = TagResource$;
|
|
5561
1949
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5562
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
5563
|
-
exports.TestMetricFilter$ = TestMetricFilter$;
|
|
5564
1950
|
exports.TestMetricFilterCommand = TestMetricFilterCommand;
|
|
5565
|
-
exports.TestMetricFilterRequest$ = TestMetricFilterRequest$;
|
|
5566
|
-
exports.TestMetricFilterResponse$ = TestMetricFilterResponse$;
|
|
5567
|
-
exports.TestTransformer$ = TestTransformer$;
|
|
5568
1951
|
exports.TestTransformerCommand = TestTransformerCommand;
|
|
5569
|
-
exports.TestTransformerRequest$ = TestTransformerRequest$;
|
|
5570
|
-
exports.TestTransformerResponse$ = TestTransformerResponse$;
|
|
5571
|
-
exports.ThrottlingException = ThrottlingException;
|
|
5572
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
5573
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
5574
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
5575
|
-
exports.TransformedLogRecord$ = TransformedLogRecord$;
|
|
5576
|
-
exports.TriggerHistoryRecord$ = TriggerHistoryRecord$;
|
|
5577
|
-
exports.TrimString$ = TrimString$;
|
|
5578
1952
|
exports.Type = Type;
|
|
5579
|
-
exports.TypeConverter$ = TypeConverter$;
|
|
5580
|
-
exports.TypeConverterEntry$ = TypeConverterEntry$;
|
|
5581
|
-
exports.UnrecognizedClientException = UnrecognizedClientException;
|
|
5582
|
-
exports.UnrecognizedClientException$ = UnrecognizedClientException$;
|
|
5583
|
-
exports.UntagLogGroup$ = UntagLogGroup$;
|
|
5584
1953
|
exports.UntagLogGroupCommand = UntagLogGroupCommand;
|
|
5585
|
-
exports.UntagLogGroupRequest$ = UntagLogGroupRequest$;
|
|
5586
|
-
exports.UntagResource$ = UntagResource$;
|
|
5587
1954
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5588
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
5589
|
-
exports.UpdateAnomaly$ = UpdateAnomaly$;
|
|
5590
1955
|
exports.UpdateAnomalyCommand = UpdateAnomalyCommand;
|
|
5591
|
-
exports.UpdateAnomalyRequest$ = UpdateAnomalyRequest$;
|
|
5592
|
-
exports.UpdateDeliveryConfiguration$ = UpdateDeliveryConfiguration$;
|
|
5593
1956
|
exports.UpdateDeliveryConfigurationCommand = UpdateDeliveryConfigurationCommand;
|
|
5594
|
-
exports.UpdateDeliveryConfigurationRequest$ = UpdateDeliveryConfigurationRequest$;
|
|
5595
|
-
exports.UpdateDeliveryConfigurationResponse$ = UpdateDeliveryConfigurationResponse$;
|
|
5596
|
-
exports.UpdateLogAnomalyDetector$ = UpdateLogAnomalyDetector$;
|
|
5597
1957
|
exports.UpdateLogAnomalyDetectorCommand = UpdateLogAnomalyDetectorCommand;
|
|
5598
|
-
exports.UpdateLogAnomalyDetectorRequest$ = UpdateLogAnomalyDetectorRequest$;
|
|
5599
|
-
exports.UpdateScheduledQuery$ = UpdateScheduledQuery$;
|
|
5600
1958
|
exports.UpdateScheduledQueryCommand = UpdateScheduledQueryCommand;
|
|
5601
|
-
exports.UpdateScheduledQueryRequest$ = UpdateScheduledQueryRequest$;
|
|
5602
|
-
exports.UpdateScheduledQueryResponse$ = UpdateScheduledQueryResponse$;
|
|
5603
|
-
exports.UpperCaseString$ = UpperCaseString$;
|
|
5604
|
-
exports.ValidationException = ValidationException;
|
|
5605
|
-
exports.ValidationException$ = ValidationException$;
|
|
5606
1959
|
exports.paginateDescribeConfigurationTemplates = paginateDescribeConfigurationTemplates;
|
|
5607
1960
|
exports.paginateDescribeDeliveries = paginateDescribeDeliveries;
|
|
5608
1961
|
exports.paginateDescribeDeliveryDestinations = paginateDescribeDeliveryDestinations;
|
|
@@ -5621,3 +1974,15 @@ exports.paginateListLogAnomalyDetectors = paginateListLogAnomalyDetectors;
|
|
|
5621
1974
|
exports.paginateListLogGroupsForQuery = paginateListLogGroupsForQuery;
|
|
5622
1975
|
exports.paginateListScheduledQueries = paginateListScheduledQueries;
|
|
5623
1976
|
exports.paginateListSourcesForS3TableIntegration = paginateListSourcesForS3TableIntegration;
|
|
1977
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1978
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1979
|
+
enumerable: true,
|
|
1980
|
+
get: function () { return schemas_0[k]; }
|
|
1981
|
+
});
|
|
1982
|
+
});
|
|
1983
|
+
Object.keys(errors).forEach(function (k) {
|
|
1984
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1985
|
+
enumerable: true,
|
|
1986
|
+
get: function () { return errors[k]; }
|
|
1987
|
+
});
|
|
1988
|
+
});
|