@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
@@ -1,6 +1,7 @@
1
1
  import { createAggregatedClient } from "@smithy/smithy-client";
2
2
  import { CloudWatchLogsClient } from "./CloudWatchLogsClient";
3
3
  import { AssociateKmsKeyCommand, } from "./commands/AssociateKmsKeyCommand";
4
+ import { AssociateSourceToS3TableIntegrationCommand, } from "./commands/AssociateSourceToS3TableIntegrationCommand";
4
5
  import { CancelExportTaskCommand, } from "./commands/CancelExportTaskCommand";
5
6
  import { CreateDeliveryCommand, } from "./commands/CreateDeliveryCommand";
6
7
  import { CreateExportTaskCommand, } from "./commands/CreateExportTaskCommand";
@@ -44,6 +45,7 @@ import { DescribeQueryDefinitionsCommand, } from "./commands/DescribeQueryDefini
44
45
  import { DescribeResourcePoliciesCommand, } from "./commands/DescribeResourcePoliciesCommand";
45
46
  import { DescribeSubscriptionFiltersCommand, } from "./commands/DescribeSubscriptionFiltersCommand";
46
47
  import { DisassociateKmsKeyCommand, } from "./commands/DisassociateKmsKeyCommand";
48
+ import { DisassociateSourceFromS3TableIntegrationCommand, } from "./commands/DisassociateSourceFromS3TableIntegrationCommand";
47
49
  import { FilterLogEventsCommand, } from "./commands/FilterLogEventsCommand";
48
50
  import { GetDataProtectionPolicyCommand, } from "./commands/GetDataProtectionPolicyCommand";
49
51
  import { GetDeliveryCommand } from "./commands/GetDeliveryCommand";
@@ -53,6 +55,7 @@ import { GetDeliverySourceCommand, } from "./commands/GetDeliverySourceCommand";
53
55
  import { GetIntegrationCommand, } from "./commands/GetIntegrationCommand";
54
56
  import { GetLogAnomalyDetectorCommand, } from "./commands/GetLogAnomalyDetectorCommand";
55
57
  import { GetLogEventsCommand, } from "./commands/GetLogEventsCommand";
58
+ import { GetLogFieldsCommand, } from "./commands/GetLogFieldsCommand";
56
59
  import { GetLogGroupFieldsCommand, } from "./commands/GetLogGroupFieldsCommand";
57
60
  import { GetLogObjectCommand, } from "./commands/GetLogObjectCommand";
58
61
  import { GetLogRecordCommand, } from "./commands/GetLogRecordCommand";
@@ -60,12 +63,14 @@ import { GetQueryResultsCommand, } from "./commands/GetQueryResultsCommand";
60
63
  import { GetScheduledQueryCommand, } from "./commands/GetScheduledQueryCommand";
61
64
  import { GetScheduledQueryHistoryCommand, } from "./commands/GetScheduledQueryHistoryCommand";
62
65
  import { GetTransformerCommand, } from "./commands/GetTransformerCommand";
66
+ import { ListAggregateLogGroupSummariesCommand, } from "./commands/ListAggregateLogGroupSummariesCommand";
63
67
  import { ListAnomaliesCommand, } from "./commands/ListAnomaliesCommand";
64
68
  import { ListIntegrationsCommand, } from "./commands/ListIntegrationsCommand";
65
69
  import { ListLogAnomalyDetectorsCommand, } from "./commands/ListLogAnomalyDetectorsCommand";
66
70
  import { ListLogGroupsCommand, } from "./commands/ListLogGroupsCommand";
67
71
  import { ListLogGroupsForQueryCommand, } from "./commands/ListLogGroupsForQueryCommand";
68
72
  import { ListScheduledQueriesCommand, } from "./commands/ListScheduledQueriesCommand";
73
+ import { ListSourcesForS3TableIntegrationCommand, } from "./commands/ListSourcesForS3TableIntegrationCommand";
69
74
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
70
75
  import { ListTagsLogGroupCommand, } from "./commands/ListTagsLogGroupCommand";
71
76
  import { PutAccountPolicyCommand, } from "./commands/PutAccountPolicyCommand";
@@ -100,6 +105,7 @@ import { UpdateLogAnomalyDetectorCommand, } from "./commands/UpdateLogAnomalyDet
100
105
  import { UpdateScheduledQueryCommand, } from "./commands/UpdateScheduledQueryCommand";
101
106
  const commands = {
102
107
  AssociateKmsKeyCommand,
108
+ AssociateSourceToS3TableIntegrationCommand,
103
109
  CancelExportTaskCommand,
104
110
  CreateDeliveryCommand,
105
111
  CreateExportTaskCommand,
@@ -143,6 +149,7 @@ const commands = {
143
149
  DescribeResourcePoliciesCommand,
144
150
  DescribeSubscriptionFiltersCommand,
145
151
  DisassociateKmsKeyCommand,
152
+ DisassociateSourceFromS3TableIntegrationCommand,
146
153
  FilterLogEventsCommand,
147
154
  GetDataProtectionPolicyCommand,
148
155
  GetDeliveryCommand,
@@ -152,6 +159,7 @@ const commands = {
152
159
  GetIntegrationCommand,
153
160
  GetLogAnomalyDetectorCommand,
154
161
  GetLogEventsCommand,
162
+ GetLogFieldsCommand,
155
163
  GetLogGroupFieldsCommand,
156
164
  GetLogObjectCommand,
157
165
  GetLogRecordCommand,
@@ -159,12 +167,14 @@ const commands = {
159
167
  GetScheduledQueryCommand,
160
168
  GetScheduledQueryHistoryCommand,
161
169
  GetTransformerCommand,
170
+ ListAggregateLogGroupSummariesCommand,
162
171
  ListAnomaliesCommand,
163
172
  ListIntegrationsCommand,
164
173
  ListLogAnomalyDetectorsCommand,
165
174
  ListLogGroupsCommand,
166
175
  ListLogGroupsForQueryCommand,
167
176
  ListScheduledQueriesCommand,
177
+ ListSourcesForS3TableIntegrationCommand,
168
178
  ListTagsForResourceCommand,
169
179
  ListTagsLogGroupCommand,
170
180
  PutAccountPolicyCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { AssociateSourceToS3TableIntegration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class AssociateSourceToS3TableIntegrationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Logs_20140328", "AssociateSourceToS3TableIntegration", {})
13
+ .n("CloudWatchLogsClient", "AssociateSourceToS3TableIntegrationCommand")
14
+ .sc(AssociateSourceToS3TableIntegration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DisassociateSourceFromS3TableIntegration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DisassociateSourceFromS3TableIntegrationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Logs_20140328", "DisassociateSourceFromS3TableIntegration", {})
13
+ .n("CloudWatchLogsClient", "DisassociateSourceFromS3TableIntegrationCommand")
14
+ .sc(DisassociateSourceFromS3TableIntegration)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetLogFields } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetLogFieldsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Logs_20140328", "GetLogFields", {})
13
+ .n("CloudWatchLogsClient", "GetLogFieldsCommand")
14
+ .sc(GetLogFields)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListAggregateLogGroupSummaries } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListAggregateLogGroupSummariesCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Logs_20140328", "ListAggregateLogGroupSummaries", {})
13
+ .n("CloudWatchLogsClient", "ListAggregateLogGroupSummariesCommand")
14
+ .sc(ListAggregateLogGroupSummaries)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListSourcesForS3TableIntegration } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListSourcesForS3TableIntegrationCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("Logs_20140328", "ListSourcesForS3TableIntegration", {})
13
+ .n("CloudWatchLogsClient", "ListSourcesForS3TableIntegrationCommand")
14
+ .sc(ListSourcesForS3TableIntegration)
15
+ .build() {
16
+ }
@@ -1,4 +1,5 @@
1
1
  export * from "./AssociateKmsKeyCommand";
2
+ export * from "./AssociateSourceToS3TableIntegrationCommand";
2
3
  export * from "./CancelExportTaskCommand";
3
4
  export * from "./CreateDeliveryCommand";
4
5
  export * from "./CreateExportTaskCommand";
@@ -42,6 +43,7 @@ export * from "./DescribeQueryDefinitionsCommand";
42
43
  export * from "./DescribeResourcePoliciesCommand";
43
44
  export * from "./DescribeSubscriptionFiltersCommand";
44
45
  export * from "./DisassociateKmsKeyCommand";
46
+ export * from "./DisassociateSourceFromS3TableIntegrationCommand";
45
47
  export * from "./FilterLogEventsCommand";
46
48
  export * from "./GetDataProtectionPolicyCommand";
47
49
  export * from "./GetDeliveryCommand";
@@ -51,6 +53,7 @@ export * from "./GetDeliverySourceCommand";
51
53
  export * from "./GetIntegrationCommand";
52
54
  export * from "./GetLogAnomalyDetectorCommand";
53
55
  export * from "./GetLogEventsCommand";
56
+ export * from "./GetLogFieldsCommand";
54
57
  export * from "./GetLogGroupFieldsCommand";
55
58
  export * from "./GetLogObjectCommand";
56
59
  export * from "./GetLogRecordCommand";
@@ -58,12 +61,14 @@ export * from "./GetQueryResultsCommand";
58
61
  export * from "./GetScheduledQueryCommand";
59
62
  export * from "./GetScheduledQueryHistoryCommand";
60
63
  export * from "./GetTransformerCommand";
64
+ export * from "./ListAggregateLogGroupSummariesCommand";
61
65
  export * from "./ListAnomaliesCommand";
62
66
  export * from "./ListIntegrationsCommand";
63
67
  export * from "./ListLogAnomalyDetectorsCommand";
64
68
  export * from "./ListLogGroupsCommand";
65
69
  export * from "./ListLogGroupsForQueryCommand";
66
70
  export * from "./ListScheduledQueriesCommand";
71
+ export * from "./ListSourcesForS3TableIntegrationCommand";
67
72
  export * from "./ListTagsForResourceCommand";
68
73
  export * from "./ListTagsLogGroupCommand";
69
74
  export * from "./PutAccountPolicyCommand";
@@ -76,6 +76,10 @@ export const ExportTaskStatusCode = {
76
76
  PENDING_CANCEL: "PENDING_CANCEL",
77
77
  RUNNING: "RUNNING",
78
78
  };
79
+ export const IndexType = {
80
+ FACET: "FACET",
81
+ FIELD_INDEX: "FIELD_INDEX",
82
+ };
79
83
  export const IndexSource = {
80
84
  ACCOUNT: "ACCOUNT",
81
85
  LOG_GROUP: "LOG_GROUP",
@@ -186,10 +190,20 @@ export const Type = {
186
190
  INTEGER: "integer",
187
191
  STRING: "string",
188
192
  };
193
+ export const ListAggregateLogGroupSummariesGroupBy = {
194
+ DATA_SOURCE_NAME_AND_TYPE: "DATA_SOURCE_NAME_AND_TYPE",
195
+ DATA_SOURCE_NAME_TYPE_AND_FORMAT: "DATA_SOURCE_NAME_TYPE_AND_FORMAT",
196
+ };
189
197
  export const SuppressionState = {
190
198
  SUPPRESSED: "SUPPRESSED",
191
199
  UNSUPPRESSED: "UNSUPPRESSED",
192
200
  };
201
+ export const S3TableIntegrationSourceStatus = {
202
+ ACTIVE: "ACTIVE",
203
+ DATA_SOURCE_DELETE_IN_PROGRESS: "DATA_SOURCE_DELETE_IN_PROGRESS",
204
+ FAILED: "FAILED",
205
+ UNHEALTHY: "UNHEALTHY",
206
+ };
193
207
  export const SuppressionUnit = {
194
208
  HOURS: "HOURS",
195
209
  MINUTES: "MINUTES",
@@ -59,64 +59,76 @@ export class ServiceUnavailableException extends __BaseException {
59
59
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
60
60
  }
61
61
  }
62
- export class InvalidOperationException extends __BaseException {
63
- name = "InvalidOperationException";
62
+ export class InternalServerException extends __BaseException {
63
+ name = "InternalServerException";
64
+ $fault = "server";
65
+ constructor(opts) {
66
+ super({
67
+ name: "InternalServerException",
68
+ $fault: "server",
69
+ ...opts,
70
+ });
71
+ Object.setPrototypeOf(this, InternalServerException.prototype);
72
+ }
73
+ }
74
+ export class ThrottlingException extends __BaseException {
75
+ name = "ThrottlingException";
64
76
  $fault = "client";
65
77
  constructor(opts) {
66
78
  super({
67
- name: "InvalidOperationException",
79
+ name: "ThrottlingException",
68
80
  $fault: "client",
69
81
  ...opts,
70
82
  });
71
- Object.setPrototypeOf(this, InvalidOperationException.prototype);
83
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
72
84
  }
73
85
  }
74
- export class ConflictException extends __BaseException {
75
- name = "ConflictException";
86
+ export class ValidationException extends __BaseException {
87
+ name = "ValidationException";
76
88
  $fault = "client";
77
89
  constructor(opts) {
78
90
  super({
79
- name: "ConflictException",
91
+ name: "ValidationException",
80
92
  $fault: "client",
81
93
  ...opts,
82
94
  });
83
- Object.setPrototypeOf(this, ConflictException.prototype);
95
+ Object.setPrototypeOf(this, ValidationException.prototype);
84
96
  }
85
97
  }
86
- export class ServiceQuotaExceededException extends __BaseException {
87
- name = "ServiceQuotaExceededException";
98
+ export class InvalidOperationException extends __BaseException {
99
+ name = "InvalidOperationException";
88
100
  $fault = "client";
89
101
  constructor(opts) {
90
102
  super({
91
- name: "ServiceQuotaExceededException",
103
+ name: "InvalidOperationException",
92
104
  $fault: "client",
93
105
  ...opts,
94
106
  });
95
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
107
+ Object.setPrototypeOf(this, InvalidOperationException.prototype);
96
108
  }
97
109
  }
98
- export class ThrottlingException extends __BaseException {
99
- name = "ThrottlingException";
110
+ export class ConflictException extends __BaseException {
111
+ name = "ConflictException";
100
112
  $fault = "client";
101
113
  constructor(opts) {
102
114
  super({
103
- name: "ThrottlingException",
115
+ name: "ConflictException",
104
116
  $fault: "client",
105
117
  ...opts,
106
118
  });
107
- Object.setPrototypeOf(this, ThrottlingException.prototype);
119
+ Object.setPrototypeOf(this, ConflictException.prototype);
108
120
  }
109
121
  }
110
- export class ValidationException extends __BaseException {
111
- name = "ValidationException";
122
+ export class ServiceQuotaExceededException extends __BaseException {
123
+ name = "ServiceQuotaExceededException";
112
124
  $fault = "client";
113
125
  constructor(opts) {
114
126
  super({
115
- name: "ValidationException",
127
+ name: "ServiceQuotaExceededException",
116
128
  $fault: "client",
117
129
  ...opts,
118
130
  });
119
- Object.setPrototypeOf(this, ValidationException.prototype);
131
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
120
132
  }
121
133
  }
122
134
  export class LimitExceededException extends __BaseException {
@@ -143,18 +155,6 @@ export class ResourceAlreadyExistsException extends __BaseException {
143
155
  Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
144
156
  }
145
157
  }
146
- export class InternalServerException extends __BaseException {
147
- name = "InternalServerException";
148
- $fault = "server";
149
- constructor(opts) {
150
- super({
151
- name: "InternalServerException",
152
- $fault: "server",
153
- ...opts,
154
- });
155
- Object.setPrototypeOf(this, InternalServerException.prototype);
156
- }
157
- }
158
158
  export class DataAlreadyAcceptedException extends __BaseException {
159
159
  name = "DataAlreadyAcceptedException";
160
160
  $fault = "client";
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { CloudWatchLogsClient } from "../CloudWatchLogsClient";
3
+ import { ListSourcesForS3TableIntegrationCommand, } from "../commands/ListSourcesForS3TableIntegrationCommand";
4
+ export const paginateListSourcesForS3TableIntegration = createPaginator(CloudWatchLogsClient, ListSourcesForS3TableIntegrationCommand, "nextToken", "nextToken", "maxResults");
@@ -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";