@aws-sdk/client-cloudwatch-logs 3.940.0 → 3.943.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +328 -71
  3. package/dist-es/CloudWatchLogs.js +10 -0
  4. package/dist-es/commands/AssociateSourceToS3TableIntegrationCommand.js +16 -0
  5. package/dist-es/commands/DisassociateSourceFromS3TableIntegrationCommand.js +16 -0
  6. package/dist-es/commands/GetLogFieldsCommand.js +16 -0
  7. package/dist-es/commands/ListAggregateLogGroupSummariesCommand.js +16 -0
  8. package/dist-es/commands/ListSourcesForS3TableIntegrationCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +14 -0
  11. package/dist-es/models/errors.js +32 -32
  12. package/dist-es/pagination/ListSourcesForS3TableIntegrationPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +207 -39
  15. package/dist-types/CloudWatchLogs.d.ts +35 -0
  16. package/dist-types/CloudWatchLogsClient.d.ts +7 -2
  17. package/dist-types/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +97 -0
  18. package/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -2
  19. package/dist-types/commands/DeleteAccountPolicyCommand.d.ts +8 -3
  20. package/dist-types/commands/DeleteIndexPolicyCommand.d.ts +8 -3
  21. package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +4 -2
  22. package/dist-types/commands/DescribeFieldIndexesCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeLogGroupsCommand.d.ts +3 -2
  24. package/dist-types/commands/DescribeQueriesCommand.d.ts +4 -0
  25. package/dist-types/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +92 -0
  26. package/dist-types/commands/GetLogFieldsCommand.d.ts +107 -0
  27. package/dist-types/commands/GetLogGroupFieldsCommand.d.ts +2 -0
  28. package/dist-types/commands/GetQueryResultsCommand.d.ts +3 -0
  29. package/dist-types/commands/GetScheduledQueryCommand.d.ts +4 -2
  30. package/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +4 -2
  31. package/dist-types/commands/ListAggregateLogGroupSummariesCommand.d.ts +118 -0
  32. package/dist-types/commands/ListLogGroupsCommand.d.ts +14 -2
  33. package/dist-types/commands/ListScheduledQueriesCommand.d.ts +4 -2
  34. package/dist-types/commands/ListSourcesForS3TableIntegrationCommand.d.ts +106 -0
  35. package/dist-types/commands/PutAccountPolicyCommand.d.ts +19 -6
  36. package/dist-types/commands/PutIndexPolicyCommand.d.ts +12 -4
  37. package/dist-types/commands/StartQueryCommand.d.ts +9 -3
  38. package/dist-types/commands/StopQueryCommand.d.ts +4 -0
  39. package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +4 -2
  40. package/dist-types/commands/index.d.ts +5 -0
  41. package/dist-types/models/enums.d.ts +38 -0
  42. package/dist-types/models/errors.d.ts +34 -32
  43. package/dist-types/models/models_0.d.ts +479 -102
  44. package/dist-types/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/schemas/schemas_0.d.ts +28 -0
  47. package/dist-types/ts3.4/CloudWatchLogs.d.ts +97 -0
  48. package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +30 -0
  49. package/dist-types/ts3.4/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +47 -0
  52. package/dist-types/ts3.4/commands/ListAggregateLogGroupSummariesCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/ListSourcesForS3TableIntegrationCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  55. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  56. package/dist-types/ts3.4/models/errors.d.ts +21 -21
  57. package/dist-types/ts3.4/models/models_0.d.ts +81 -0
  58. package/dist-types/ts3.4/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
  61. package/package.json +5 -5
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListSourcesForS3TableIntegrationCommandInput, ListSourcesForS3TableIntegrationCommandOutput } from "../commands/ListSourcesForS3TableIntegrationCommand";
3
+ import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListSourcesForS3TableIntegration: (config: CloudWatchLogsPaginationConfiguration, input: ListSourcesForS3TableIntegrationCommandInput, ...rest: any[]) => Paginator<ListSourcesForS3TableIntegrationCommandOutput>;
@@ -15,3 +15,4 @@ export * from "./ListAnomaliesPaginator";
15
15
  export * from "./ListLogAnomalyDetectorsPaginator";
16
16
  export * from "./ListLogGroupsForQueryPaginator";
17
17
  export * from "./ListScheduledQueriesPaginator";
18
+ export * from "./ListSourcesForS3TableIntegrationPaginator";
@@ -3,9 +3,12 @@ export declare var AccessDeniedException: StaticErrorSchema;
3
3
  export declare var AccountPolicy: StaticStructureSchema;
4
4
  export declare var AddKeyEntry: StaticStructureSchema;
5
5
  export declare var AddKeys: StaticStructureSchema;
6
+ export declare var AggregateLogGroupSummary: StaticStructureSchema;
6
7
  export declare var Anomaly: StaticStructureSchema;
7
8
  export declare var AnomalyDetector: StaticStructureSchema;
8
9
  export declare var AssociateKmsKeyRequest: StaticStructureSchema;
10
+ export declare var AssociateSourceToS3TableIntegrationRequest: StaticStructureSchema;
11
+ export declare var AssociateSourceToS3TableIntegrationResponse: StaticStructureSchema;
9
12
  export declare var CancelExportTaskRequest: StaticStructureSchema;
10
13
  export declare var ConfigurationTemplate: StaticStructureSchema;
11
14
  export declare var ConfigurationTemplateDeliveryConfigValues: StaticStructureSchema;
@@ -24,6 +27,8 @@ export declare var CreateScheduledQueryRequest: StaticStructureSchema;
24
27
  export declare var CreateScheduledQueryResponse: StaticStructureSchema;
25
28
  export declare var CSV: StaticStructureSchema;
26
29
  export declare var DataAlreadyAcceptedException: StaticErrorSchema;
30
+ export declare var DataSource: StaticStructureSchema;
31
+ export declare var DataSourceFilter: StaticStructureSchema;
27
32
  export declare var DateTimeConverter: StaticStructureSchema;
28
33
  export declare var DeleteAccountPolicyRequest: StaticStructureSchema;
29
34
  export declare var DeleteDataProtectionPolicyRequest: StaticStructureSchema;
@@ -88,6 +93,8 @@ export declare var DescribeSubscriptionFiltersResponse: StaticStructureSchema;
88
93
  export declare var Destination: StaticStructureSchema;
89
94
  export declare var DestinationConfiguration: StaticStructureSchema;
90
95
  export declare var DisassociateKmsKeyRequest: StaticStructureSchema;
96
+ export declare var DisassociateSourceFromS3TableIntegrationRequest: StaticStructureSchema;
97
+ export declare var DisassociateSourceFromS3TableIntegrationResponse: StaticStructureSchema;
91
98
  export declare var Entity: StaticStructureSchema;
92
99
  export declare var ExportTask: StaticStructureSchema;
93
100
  export declare var ExportTaskExecutionInfo: StaticStructureSchema;
@@ -113,6 +120,8 @@ export declare var GetLogAnomalyDetectorRequest: StaticStructureSchema;
113
120
  export declare var GetLogAnomalyDetectorResponse: StaticStructureSchema;
114
121
  export declare var GetLogEventsRequest: StaticStructureSchema;
115
122
  export declare var GetLogEventsResponse: StaticStructureSchema;
123
+ export declare var GetLogFieldsRequest: StaticStructureSchema;
124
+ export declare var GetLogFieldsResponse: StaticStructureSchema;
116
125
  export declare var GetLogGroupFieldsRequest: StaticStructureSchema;
117
126
  export declare var GetLogGroupFieldsResponse: StaticStructureSchema;
118
127
  export declare var GetLogObjectRequest: StaticStructureSchema;
@@ -128,6 +137,7 @@ export declare var GetScheduledQueryResponse: StaticStructureSchema;
128
137
  export declare var GetTransformerRequest: StaticStructureSchema;
129
138
  export declare var GetTransformerResponse: StaticStructureSchema;
130
139
  export declare var Grok: StaticStructureSchema;
140
+ export declare var GroupingIdentifier: StaticStructureSchema;
131
141
  export declare var IndexPolicy: StaticStructureSchema;
132
142
  export declare var InputLogEvent: StaticStructureSchema;
133
143
  export declare var IntegrationSummary: StaticStructureSchema;
@@ -137,6 +147,8 @@ export declare var InvalidOperationException: StaticErrorSchema;
137
147
  export declare var InvalidParameterException: StaticErrorSchema;
138
148
  export declare var InvalidSequenceTokenException: StaticErrorSchema;
139
149
  export declare var LimitExceededException: StaticErrorSchema;
150
+ export declare var ListAggregateLogGroupSummariesRequest: StaticStructureSchema;
151
+ export declare var ListAggregateLogGroupSummariesResponse: StaticStructureSchema;
140
152
  export declare var ListAnomaliesRequest: StaticStructureSchema;
141
153
  export declare var ListAnomaliesResponse: StaticStructureSchema;
142
154
  export declare var ListIntegrationsRequest: StaticStructureSchema;
@@ -149,6 +161,8 @@ export declare var ListLogGroupsRequest: StaticStructureSchema;
149
161
  export declare var ListLogGroupsResponse: StaticStructureSchema;
150
162
  export declare var ListScheduledQueriesRequest: StaticStructureSchema;
151
163
  export declare var ListScheduledQueriesResponse: StaticStructureSchema;
164
+ export declare var ListSourcesForS3TableIntegrationRequest: StaticStructureSchema;
165
+ export declare var ListSourcesForS3TableIntegrationResponse: StaticStructureSchema;
152
166
  export declare var ListTagsForResourceRequest: StaticStructureSchema;
153
167
  export declare var ListTagsForResourceResponse: StaticStructureSchema;
154
168
  export declare var ListTagsLogGroupRequest: StaticStructureSchema;
@@ -159,6 +173,8 @@ export declare var LiveTailSessionMetadata: StaticStructureSchema;
159
173
  export declare var LiveTailSessionStart: StaticStructureSchema;
160
174
  export declare var LiveTailSessionUpdate: StaticStructureSchema;
161
175
  export declare var LogEvent: StaticStructureSchema;
176
+ export declare var LogFieldsListItem: StaticStructureSchema;
177
+ export declare var LogFieldType: StaticStructureSchema;
162
178
  export declare var LogGroup: StaticStructureSchema;
163
179
  export declare var LogGroupField: StaticStructureSchema;
164
180
  export declare var LogGroupSummary: StaticStructureSchema;
@@ -238,6 +254,7 @@ export declare var ResourcePolicy: StaticStructureSchema;
238
254
  export declare var ResultField: StaticStructureSchema;
239
255
  export declare var S3Configuration: StaticStructureSchema;
240
256
  export declare var S3DeliveryConfiguration: StaticStructureSchema;
257
+ export declare var S3TableIntegrationSource: StaticStructureSchema;
241
258
  export declare var ScheduledQueryDestination: StaticStructureSchema;
242
259
  export declare var ScheduledQuerySummary: StaticStructureSchema;
243
260
  export declare var SearchedLogStream: StaticStructureSchema;
@@ -286,6 +303,7 @@ export declare var CloudWatchLogsServiceException: StaticErrorSchema;
286
303
  export declare var AccountIds: number;
287
304
  export declare var AccountPolicies: StaticListSchema;
288
305
  export declare var AddKeyEntries: StaticListSchema;
306
+ export declare var AggregateLogGroupSummaries: StaticListSchema;
289
307
  export declare var AllowedFieldDelimiters: number;
290
308
  export declare var AllowedFields: StaticListSchema;
291
309
  export declare var Anomalies: StaticListSchema;
@@ -294,6 +312,7 @@ export declare var Columns: number;
294
312
  export declare var ConfigurationTemplates: StaticListSchema;
295
313
  export declare var CopyValueEntries: StaticListSchema;
296
314
  export declare var DashboardViewerPrincipals: number;
315
+ export declare var DataSourceFilters: StaticListSchema;
297
316
  export declare var DeleteWithKeys: number;
298
317
  export declare var Deliveries: StaticListSchema;
299
318
  export declare var DeliveryDestinations: StaticListSchema;
@@ -307,13 +326,16 @@ export declare var EmitSystemFields: number;
307
326
  export declare var ExecutionStatusList: number;
308
327
  export declare var ExportTasks: StaticListSchema;
309
328
  export declare var FieldIndexes: StaticListSchema;
329
+ export declare var FieldIndexNames: number;
310
330
  export declare var FilteredLogEvents: StaticListSchema;
331
+ export declare var GroupingIdentifiers: StaticListSchema;
311
332
  export declare var IndexPolicies: StaticListSchema;
312
333
  export declare var InheritedProperties: number;
313
334
  export declare var InputLogEvents: StaticListSchema;
314
335
  export declare var InputLogStreamNames: number;
315
336
  export declare var IntegrationSummaries: StaticListSchema;
316
337
  export declare var LiveTailSessionResults: StaticListSchema;
338
+ export declare var LogFieldsList: StaticListSchema;
317
339
  export declare var LogGroupArnList: number;
318
340
  export declare var LogGroupFieldList: StaticListSchema;
319
341
  export declare var LogGroupIdentifiers: number;
@@ -342,6 +364,7 @@ export declare var ResourceArns: number;
342
364
  export declare var ResourcePolicies: StaticListSchema;
343
365
  export declare var ResourceTypes: number;
344
366
  export declare var ResultRows: StaticListSchema;
367
+ export declare var S3TableIntegrationSources: StaticListSchema;
345
368
  export declare var ScheduledQueryDestinationList: StaticListSchema;
346
369
  export declare var ScheduledQueryLogGroupIdentifiers: number;
347
370
  export declare var ScheduledQuerySummaryList: StaticListSchema;
@@ -371,6 +394,7 @@ export declare var IntegrationDetails: StaticStructureSchema;
371
394
  export declare var ResourceConfig: StaticStructureSchema;
372
395
  export declare var StartLiveTailResponseStream: StaticStructureSchema;
373
396
  export declare var AssociateKmsKey: StaticOperationSchema;
397
+ export declare var AssociateSourceToS3TableIntegration: StaticOperationSchema;
374
398
  export declare var CancelExportTask: StaticOperationSchema;
375
399
  export declare var CreateDelivery: StaticOperationSchema;
376
400
  export declare var CreateExportTask: StaticOperationSchema;
@@ -414,6 +438,7 @@ export declare var DescribeQueryDefinitions: StaticOperationSchema;
414
438
  export declare var DescribeResourcePolicies: StaticOperationSchema;
415
439
  export declare var DescribeSubscriptionFilters: StaticOperationSchema;
416
440
  export declare var DisassociateKmsKey: StaticOperationSchema;
441
+ export declare var DisassociateSourceFromS3TableIntegration: StaticOperationSchema;
417
442
  export declare var FilterLogEvents: StaticOperationSchema;
418
443
  export declare var GetDataProtectionPolicy: StaticOperationSchema;
419
444
  export declare var GetDelivery: StaticOperationSchema;
@@ -423,6 +448,7 @@ export declare var GetDeliverySource: StaticOperationSchema;
423
448
  export declare var GetIntegration: StaticOperationSchema;
424
449
  export declare var GetLogAnomalyDetector: StaticOperationSchema;
425
450
  export declare var GetLogEvents: StaticOperationSchema;
451
+ export declare var GetLogFields: StaticOperationSchema;
426
452
  export declare var GetLogGroupFields: StaticOperationSchema;
427
453
  export declare var GetLogObject: StaticOperationSchema;
428
454
  export declare var GetLogRecord: StaticOperationSchema;
@@ -430,12 +456,14 @@ export declare var GetQueryResults: StaticOperationSchema;
430
456
  export declare var GetScheduledQuery: StaticOperationSchema;
431
457
  export declare var GetScheduledQueryHistory: StaticOperationSchema;
432
458
  export declare var GetTransformer: StaticOperationSchema;
459
+ export declare var ListAggregateLogGroupSummaries: StaticOperationSchema;
433
460
  export declare var ListAnomalies: StaticOperationSchema;
434
461
  export declare var ListIntegrations: StaticOperationSchema;
435
462
  export declare var ListLogAnomalyDetectors: StaticOperationSchema;
436
463
  export declare var ListLogGroups: StaticOperationSchema;
437
464
  export declare var ListLogGroupsForQuery: StaticOperationSchema;
438
465
  export declare var ListScheduledQueries: StaticOperationSchema;
466
+ export declare var ListSourcesForS3TableIntegration: StaticOperationSchema;
439
467
  export declare var ListTagsForResource: StaticOperationSchema;
440
468
  export declare var ListTagsLogGroup: StaticOperationSchema;
441
469
  export declare var PutAccountPolicy: StaticOperationSchema;
@@ -4,6 +4,10 @@ import {
4
4
  AssociateKmsKeyCommandInput,
5
5
  AssociateKmsKeyCommandOutput,
6
6
  } from "./commands/AssociateKmsKeyCommand";
7
+ import {
8
+ AssociateSourceToS3TableIntegrationCommandInput,
9
+ AssociateSourceToS3TableIntegrationCommandOutput,
10
+ } from "./commands/AssociateSourceToS3TableIntegrationCommand";
7
11
  import {
8
12
  CancelExportTaskCommandInput,
9
13
  CancelExportTaskCommandOutput,
@@ -176,6 +180,10 @@ import {
176
180
  DisassociateKmsKeyCommandInput,
177
181
  DisassociateKmsKeyCommandOutput,
178
182
  } from "./commands/DisassociateKmsKeyCommand";
183
+ import {
184
+ DisassociateSourceFromS3TableIntegrationCommandInput,
185
+ DisassociateSourceFromS3TableIntegrationCommandOutput,
186
+ } from "./commands/DisassociateSourceFromS3TableIntegrationCommand";
179
187
  import {
180
188
  FilterLogEventsCommandInput,
181
189
  FilterLogEventsCommandOutput,
@@ -212,6 +220,10 @@ import {
212
220
  GetLogEventsCommandInput,
213
221
  GetLogEventsCommandOutput,
214
222
  } from "./commands/GetLogEventsCommand";
223
+ import {
224
+ GetLogFieldsCommandInput,
225
+ GetLogFieldsCommandOutput,
226
+ } from "./commands/GetLogFieldsCommand";
215
227
  import {
216
228
  GetLogGroupFieldsCommandInput,
217
229
  GetLogGroupFieldsCommandOutput,
@@ -240,6 +252,10 @@ import {
240
252
  GetTransformerCommandInput,
241
253
  GetTransformerCommandOutput,
242
254
  } from "./commands/GetTransformerCommand";
255
+ import {
256
+ ListAggregateLogGroupSummariesCommandInput,
257
+ ListAggregateLogGroupSummariesCommandOutput,
258
+ } from "./commands/ListAggregateLogGroupSummariesCommand";
243
259
  import {
244
260
  ListAnomaliesCommandInput,
245
261
  ListAnomaliesCommandOutput,
@@ -264,6 +280,10 @@ import {
264
280
  ListScheduledQueriesCommandInput,
265
281
  ListScheduledQueriesCommandOutput,
266
282
  } from "./commands/ListScheduledQueriesCommand";
283
+ import {
284
+ ListSourcesForS3TableIntegrationCommandInput,
285
+ ListSourcesForS3TableIntegrationCommandOutput,
286
+ } from "./commands/ListSourcesForS3TableIntegrationCommand";
267
287
  import {
268
288
  ListTagsForResourceCommandInput,
269
289
  ListTagsForResourceCommandOutput,
@@ -406,6 +426,25 @@ export interface CloudWatchLogs {
406
426
  options: __HttpHandlerOptions,
407
427
  cb: (err: any, data?: AssociateKmsKeyCommandOutput) => void
408
428
  ): void;
429
+ associateSourceToS3TableIntegration(
430
+ args: AssociateSourceToS3TableIntegrationCommandInput,
431
+ options?: __HttpHandlerOptions
432
+ ): Promise<AssociateSourceToS3TableIntegrationCommandOutput>;
433
+ associateSourceToS3TableIntegration(
434
+ args: AssociateSourceToS3TableIntegrationCommandInput,
435
+ cb: (
436
+ err: any,
437
+ data?: AssociateSourceToS3TableIntegrationCommandOutput
438
+ ) => void
439
+ ): void;
440
+ associateSourceToS3TableIntegration(
441
+ args: AssociateSourceToS3TableIntegrationCommandInput,
442
+ options: __HttpHandlerOptions,
443
+ cb: (
444
+ err: any,
445
+ data?: AssociateSourceToS3TableIntegrationCommandOutput
446
+ ) => void
447
+ ): void;
409
448
  cancelExportTask(
410
449
  args: CancelExportTaskCommandInput,
411
450
  options?: __HttpHandlerOptions
@@ -979,6 +1018,25 @@ export interface CloudWatchLogs {
979
1018
  options: __HttpHandlerOptions,
980
1019
  cb: (err: any, data?: DisassociateKmsKeyCommandOutput) => void
981
1020
  ): void;
1021
+ disassociateSourceFromS3TableIntegration(
1022
+ args: DisassociateSourceFromS3TableIntegrationCommandInput,
1023
+ options?: __HttpHandlerOptions
1024
+ ): Promise<DisassociateSourceFromS3TableIntegrationCommandOutput>;
1025
+ disassociateSourceFromS3TableIntegration(
1026
+ args: DisassociateSourceFromS3TableIntegrationCommandInput,
1027
+ cb: (
1028
+ err: any,
1029
+ data?: DisassociateSourceFromS3TableIntegrationCommandOutput
1030
+ ) => void
1031
+ ): void;
1032
+ disassociateSourceFromS3TableIntegration(
1033
+ args: DisassociateSourceFromS3TableIntegrationCommandInput,
1034
+ options: __HttpHandlerOptions,
1035
+ cb: (
1036
+ err: any,
1037
+ data?: DisassociateSourceFromS3TableIntegrationCommandOutput
1038
+ ) => void
1039
+ ): void;
982
1040
  filterLogEvents(): Promise<FilterLogEventsCommandOutput>;
983
1041
  filterLogEvents(
984
1042
  args: FilterLogEventsCommandInput,
@@ -1097,6 +1155,19 @@ export interface CloudWatchLogs {
1097
1155
  options: __HttpHandlerOptions,
1098
1156
  cb: (err: any, data?: GetLogEventsCommandOutput) => void
1099
1157
  ): void;
1158
+ getLogFields(
1159
+ args: GetLogFieldsCommandInput,
1160
+ options?: __HttpHandlerOptions
1161
+ ): Promise<GetLogFieldsCommandOutput>;
1162
+ getLogFields(
1163
+ args: GetLogFieldsCommandInput,
1164
+ cb: (err: any, data?: GetLogFieldsCommandOutput) => void
1165
+ ): void;
1166
+ getLogFields(
1167
+ args: GetLogFieldsCommandInput,
1168
+ options: __HttpHandlerOptions,
1169
+ cb: (err: any, data?: GetLogFieldsCommandOutput) => void
1170
+ ): void;
1100
1171
  getLogGroupFields(): Promise<GetLogGroupFieldsCommandOutput>;
1101
1172
  getLogGroupFields(
1102
1173
  args: GetLogGroupFieldsCommandInput,
@@ -1189,6 +1260,19 @@ export interface CloudWatchLogs {
1189
1260
  options: __HttpHandlerOptions,
1190
1261
  cb: (err: any, data?: GetTransformerCommandOutput) => void
1191
1262
  ): void;
1263
+ listAggregateLogGroupSummaries(
1264
+ args: ListAggregateLogGroupSummariesCommandInput,
1265
+ options?: __HttpHandlerOptions
1266
+ ): Promise<ListAggregateLogGroupSummariesCommandOutput>;
1267
+ listAggregateLogGroupSummaries(
1268
+ args: ListAggregateLogGroupSummariesCommandInput,
1269
+ cb: (err: any, data?: ListAggregateLogGroupSummariesCommandOutput) => void
1270
+ ): void;
1271
+ listAggregateLogGroupSummaries(
1272
+ args: ListAggregateLogGroupSummariesCommandInput,
1273
+ options: __HttpHandlerOptions,
1274
+ cb: (err: any, data?: ListAggregateLogGroupSummariesCommandOutput) => void
1275
+ ): void;
1192
1276
  listAnomalies(): Promise<ListAnomaliesCommandOutput>;
1193
1277
  listAnomalies(
1194
1278
  args: ListAnomaliesCommandInput,
@@ -1272,6 +1356,19 @@ export interface CloudWatchLogs {
1272
1356
  options: __HttpHandlerOptions,
1273
1357
  cb: (err: any, data?: ListScheduledQueriesCommandOutput) => void
1274
1358
  ): void;
1359
+ listSourcesForS3TableIntegration(
1360
+ args: ListSourcesForS3TableIntegrationCommandInput,
1361
+ options?: __HttpHandlerOptions
1362
+ ): Promise<ListSourcesForS3TableIntegrationCommandOutput>;
1363
+ listSourcesForS3TableIntegration(
1364
+ args: ListSourcesForS3TableIntegrationCommandInput,
1365
+ cb: (err: any, data?: ListSourcesForS3TableIntegrationCommandOutput) => void
1366
+ ): void;
1367
+ listSourcesForS3TableIntegration(
1368
+ args: ListSourcesForS3TableIntegrationCommandInput,
1369
+ options: __HttpHandlerOptions,
1370
+ cb: (err: any, data?: ListSourcesForS3TableIntegrationCommandOutput) => void
1371
+ ): void;
1275
1372
  listTagsForResource(
1276
1373
  args: ListTagsForResourceCommandInput,
1277
1374
  options?: __HttpHandlerOptions
@@ -57,6 +57,10 @@ import {
57
57
  AssociateKmsKeyCommandInput,
58
58
  AssociateKmsKeyCommandOutput,
59
59
  } from "./commands/AssociateKmsKeyCommand";
60
+ import {
61
+ AssociateSourceToS3TableIntegrationCommandInput,
62
+ AssociateSourceToS3TableIntegrationCommandOutput,
63
+ } from "./commands/AssociateSourceToS3TableIntegrationCommand";
60
64
  import {
61
65
  CancelExportTaskCommandInput,
62
66
  CancelExportTaskCommandOutput,
@@ -229,6 +233,10 @@ import {
229
233
  DisassociateKmsKeyCommandInput,
230
234
  DisassociateKmsKeyCommandOutput,
231
235
  } from "./commands/DisassociateKmsKeyCommand";
236
+ import {
237
+ DisassociateSourceFromS3TableIntegrationCommandInput,
238
+ DisassociateSourceFromS3TableIntegrationCommandOutput,
239
+ } from "./commands/DisassociateSourceFromS3TableIntegrationCommand";
232
240
  import {
233
241
  FilterLogEventsCommandInput,
234
242
  FilterLogEventsCommandOutput,
@@ -265,6 +273,10 @@ import {
265
273
  GetLogEventsCommandInput,
266
274
  GetLogEventsCommandOutput,
267
275
  } from "./commands/GetLogEventsCommand";
276
+ import {
277
+ GetLogFieldsCommandInput,
278
+ GetLogFieldsCommandOutput,
279
+ } from "./commands/GetLogFieldsCommand";
268
280
  import {
269
281
  GetLogGroupFieldsCommandInput,
270
282
  GetLogGroupFieldsCommandOutput,
@@ -293,6 +305,10 @@ import {
293
305
  GetTransformerCommandInput,
294
306
  GetTransformerCommandOutput,
295
307
  } from "./commands/GetTransformerCommand";
308
+ import {
309
+ ListAggregateLogGroupSummariesCommandInput,
310
+ ListAggregateLogGroupSummariesCommandOutput,
311
+ } from "./commands/ListAggregateLogGroupSummariesCommand";
296
312
  import {
297
313
  ListAnomaliesCommandInput,
298
314
  ListAnomaliesCommandOutput,
@@ -317,6 +333,10 @@ import {
317
333
  ListScheduledQueriesCommandInput,
318
334
  ListScheduledQueriesCommandOutput,
319
335
  } from "./commands/ListScheduledQueriesCommand";
336
+ import {
337
+ ListSourcesForS3TableIntegrationCommandInput,
338
+ ListSourcesForS3TableIntegrationCommandOutput,
339
+ } from "./commands/ListSourcesForS3TableIntegrationCommand";
320
340
  import {
321
341
  ListTagsForResourceCommandInput,
322
342
  ListTagsForResourceCommandOutput,
@@ -454,6 +474,7 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
454
474
  export { __Client };
455
475
  export type ServiceInputTypes =
456
476
  | AssociateKmsKeyCommandInput
477
+ | AssociateSourceToS3TableIntegrationCommandInput
457
478
  | CancelExportTaskCommandInput
458
479
  | CreateDeliveryCommandInput
459
480
  | CreateExportTaskCommandInput
@@ -497,6 +518,7 @@ export type ServiceInputTypes =
497
518
  | DescribeResourcePoliciesCommandInput
498
519
  | DescribeSubscriptionFiltersCommandInput
499
520
  | DisassociateKmsKeyCommandInput
521
+ | DisassociateSourceFromS3TableIntegrationCommandInput
500
522
  | FilterLogEventsCommandInput
501
523
  | GetDataProtectionPolicyCommandInput
502
524
  | GetDeliveryCommandInput
@@ -506,6 +528,7 @@ export type ServiceInputTypes =
506
528
  | GetIntegrationCommandInput
507
529
  | GetLogAnomalyDetectorCommandInput
508
530
  | GetLogEventsCommandInput
531
+ | GetLogFieldsCommandInput
509
532
  | GetLogGroupFieldsCommandInput
510
533
  | GetLogObjectCommandInput
511
534
  | GetLogRecordCommandInput
@@ -513,12 +536,14 @@ export type ServiceInputTypes =
513
536
  | GetScheduledQueryCommandInput
514
537
  | GetScheduledQueryHistoryCommandInput
515
538
  | GetTransformerCommandInput
539
+ | ListAggregateLogGroupSummariesCommandInput
516
540
  | ListAnomaliesCommandInput
517
541
  | ListIntegrationsCommandInput
518
542
  | ListLogAnomalyDetectorsCommandInput
519
543
  | ListLogGroupsCommandInput
520
544
  | ListLogGroupsForQueryCommandInput
521
545
  | ListScheduledQueriesCommandInput
546
+ | ListSourcesForS3TableIntegrationCommandInput
522
547
  | ListTagsForResourceCommandInput
523
548
  | ListTagsLogGroupCommandInput
524
549
  | PutAccountPolicyCommandInput
@@ -553,6 +578,7 @@ export type ServiceInputTypes =
553
578
  | UpdateScheduledQueryCommandInput;
554
579
  export type ServiceOutputTypes =
555
580
  | AssociateKmsKeyCommandOutput
581
+ | AssociateSourceToS3TableIntegrationCommandOutput
556
582
  | CancelExportTaskCommandOutput
557
583
  | CreateDeliveryCommandOutput
558
584
  | CreateExportTaskCommandOutput
@@ -596,6 +622,7 @@ export type ServiceOutputTypes =
596
622
  | DescribeResourcePoliciesCommandOutput
597
623
  | DescribeSubscriptionFiltersCommandOutput
598
624
  | DisassociateKmsKeyCommandOutput
625
+ | DisassociateSourceFromS3TableIntegrationCommandOutput
599
626
  | FilterLogEventsCommandOutput
600
627
  | GetDataProtectionPolicyCommandOutput
601
628
  | GetDeliveryCommandOutput
@@ -605,6 +632,7 @@ export type ServiceOutputTypes =
605
632
  | GetIntegrationCommandOutput
606
633
  | GetLogAnomalyDetectorCommandOutput
607
634
  | GetLogEventsCommandOutput
635
+ | GetLogFieldsCommandOutput
608
636
  | GetLogGroupFieldsCommandOutput
609
637
  | GetLogObjectCommandOutput
610
638
  | GetLogRecordCommandOutput
@@ -612,12 +640,14 @@ export type ServiceOutputTypes =
612
640
  | GetScheduledQueryCommandOutput
613
641
  | GetScheduledQueryHistoryCommandOutput
614
642
  | GetTransformerCommandOutput
643
+ | ListAggregateLogGroupSummariesCommandOutput
615
644
  | ListAnomaliesCommandOutput
616
645
  | ListIntegrationsCommandOutput
617
646
  | ListLogAnomalyDetectorsCommandOutput
618
647
  | ListLogGroupsCommandOutput
619
648
  | ListLogGroupsForQueryCommandOutput
620
649
  | ListScheduledQueriesCommandOutput
650
+ | ListSourcesForS3TableIntegrationCommandOutput
621
651
  | ListTagsForResourceCommandOutput
622
652
  | ListTagsLogGroupCommandOutput
623
653
  | PutAccountPolicyCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudWatchLogsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudWatchLogsClient";
8
+ import {
9
+ AssociateSourceToS3TableIntegrationRequest,
10
+ AssociateSourceToS3TableIntegrationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AssociateSourceToS3TableIntegrationCommandInput
15
+ extends AssociateSourceToS3TableIntegrationRequest {}
16
+ export interface AssociateSourceToS3TableIntegrationCommandOutput
17
+ extends AssociateSourceToS3TableIntegrationResponse,
18
+ __MetadataBearer {}
19
+ declare const AssociateSourceToS3TableIntegrationCommand_base: {
20
+ new (
21
+ input: AssociateSourceToS3TableIntegrationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ AssociateSourceToS3TableIntegrationCommandInput,
24
+ AssociateSourceToS3TableIntegrationCommandOutput,
25
+ CloudWatchLogsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: AssociateSourceToS3TableIntegrationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ AssociateSourceToS3TableIntegrationCommandInput,
33
+ AssociateSourceToS3TableIntegrationCommandOutput,
34
+ CloudWatchLogsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class AssociateSourceToS3TableIntegrationCommand extends AssociateSourceToS3TableIntegrationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: AssociateSourceToS3TableIntegrationRequest;
44
+ output: AssociateSourceToS3TableIntegrationResponse;
45
+ };
46
+ sdk: {
47
+ input: AssociateSourceToS3TableIntegrationCommandInput;
48
+ output: AssociateSourceToS3TableIntegrationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudWatchLogsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudWatchLogsClient";
8
+ import {
9
+ DisassociateSourceFromS3TableIntegrationRequest,
10
+ DisassociateSourceFromS3TableIntegrationResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateSourceFromS3TableIntegrationCommandInput
15
+ extends DisassociateSourceFromS3TableIntegrationRequest {}
16
+ export interface DisassociateSourceFromS3TableIntegrationCommandOutput
17
+ extends DisassociateSourceFromS3TableIntegrationResponse,
18
+ __MetadataBearer {}
19
+ declare const DisassociateSourceFromS3TableIntegrationCommand_base: {
20
+ new (
21
+ input: DisassociateSourceFromS3TableIntegrationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateSourceFromS3TableIntegrationCommandInput,
24
+ DisassociateSourceFromS3TableIntegrationCommandOutput,
25
+ CloudWatchLogsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DisassociateSourceFromS3TableIntegrationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateSourceFromS3TableIntegrationCommandInput,
33
+ DisassociateSourceFromS3TableIntegrationCommandOutput,
34
+ CloudWatchLogsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateSourceFromS3TableIntegrationCommand extends DisassociateSourceFromS3TableIntegrationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateSourceFromS3TableIntegrationRequest;
44
+ output: DisassociateSourceFromS3TableIntegrationResponse;
45
+ };
46
+ sdk: {
47
+ input: DisassociateSourceFromS3TableIntegrationCommandInput;
48
+ output: DisassociateSourceFromS3TableIntegrationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudWatchLogsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudWatchLogsClient";
8
+ import { GetLogFieldsRequest, GetLogFieldsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetLogFieldsCommandInput extends GetLogFieldsRequest {}
12
+ export interface GetLogFieldsCommandOutput
13
+ extends GetLogFieldsResponse,
14
+ __MetadataBearer {}
15
+ declare const GetLogFieldsCommand_base: {
16
+ new (
17
+ input: GetLogFieldsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetLogFieldsCommandInput,
20
+ GetLogFieldsCommandOutput,
21
+ CloudWatchLogsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetLogFieldsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetLogFieldsCommandInput,
29
+ GetLogFieldsCommandOutput,
30
+ CloudWatchLogsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetLogFieldsCommand extends GetLogFieldsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetLogFieldsRequest;
40
+ output: GetLogFieldsResponse;
41
+ };
42
+ sdk: {
43
+ input: GetLogFieldsCommandInput;
44
+ output: GetLogFieldsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudWatchLogsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudWatchLogsClient";
8
+ import {
9
+ ListAggregateLogGroupSummariesRequest,
10
+ ListAggregateLogGroupSummariesResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListAggregateLogGroupSummariesCommandInput
15
+ extends ListAggregateLogGroupSummariesRequest {}
16
+ export interface ListAggregateLogGroupSummariesCommandOutput
17
+ extends ListAggregateLogGroupSummariesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListAggregateLogGroupSummariesCommand_base: {
20
+ new (
21
+ input: ListAggregateLogGroupSummariesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListAggregateLogGroupSummariesCommandInput,
24
+ ListAggregateLogGroupSummariesCommandOutput,
25
+ CloudWatchLogsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListAggregateLogGroupSummariesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListAggregateLogGroupSummariesCommandInput,
33
+ ListAggregateLogGroupSummariesCommandOutput,
34
+ CloudWatchLogsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListAggregateLogGroupSummariesCommand extends ListAggregateLogGroupSummariesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListAggregateLogGroupSummariesRequest;
44
+ output: ListAggregateLogGroupSummariesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListAggregateLogGroupSummariesCommandInput;
48
+ output: ListAggregateLogGroupSummariesCommandOutput;
49
+ };
50
+ };
51
+ }