@aws-sdk/client-cloudwatch-logs 3.948.0 → 3.952.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/README.md +32 -0
- package/dist-cjs/index.js +218 -32
- package/dist-es/CloudWatchLogs.js +8 -0
- package/dist-es/commands/CancelImportTaskCommand.js +16 -0
- package/dist-es/commands/CreateImportTaskCommand.js +16 -0
- package/dist-es/commands/DescribeImportTaskBatchesCommand.js +16 -0
- package/dist-es/commands/DescribeImportTasksCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/pagination/ListAggregateLogGroupSummariesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +153 -32
- package/dist-types/CloudWatchLogs.d.ts +29 -0
- package/dist-types/CloudWatchLogsClient.d.ts +6 -2
- package/dist-types/commands/CancelImportTaskCommand.d.ts +95 -0
- package/dist-types/commands/CreateImportTaskCommand.d.ts +152 -0
- package/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -1
- package/dist-types/commands/DeleteAccountPolicyCommand.d.ts +8 -8
- package/dist-types/commands/DeleteIndexPolicyCommand.d.ts +6 -6
- package/dist-types/commands/DeleteScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeImportTaskBatchesCommand.d.ts +104 -0
- package/dist-types/commands/DescribeImportTasksCommand.d.ts +111 -0
- package/dist-types/commands/DescribeQueriesCommand.d.ts +2 -2
- package/dist-types/commands/GetQueryResultsCommand.d.ts +2 -1
- package/dist-types/commands/GetScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +2 -1
- package/dist-types/commands/ListScheduledQueriesCommand.d.ts +2 -1
- package/dist-types/commands/PutAccountPolicyCommand.d.ts +196 -47
- package/dist-types/commands/PutIndexPolicyCommand.d.ts +4 -4
- package/dist-types/commands/PutLogGroupDeletionProtectionCommand.d.ts +3 -2
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +14 -0
- package/dist-types/models/models_0.d.ts +391 -44
- package/dist-types/pagination/ListAggregateLogGroupSummariesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +19 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +69 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateImportTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeImportTaskBatchesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +67 -0
- package/dist-types/ts3.4/pagination/ListAggregateLogGroupSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/package.json +2 -2
|
@@ -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 { CancelImportTask } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CancelImportTaskCommand 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", "CancelImportTask", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "CancelImportTaskCommand")
|
|
14
|
+
.sc(CancelImportTask)
|
|
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 { CreateImportTask } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateImportTaskCommand 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", "CreateImportTask", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "CreateImportTaskCommand")
|
|
14
|
+
.sc(CreateImportTask)
|
|
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 { DescribeImportTaskBatches } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeImportTaskBatchesCommand 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", "DescribeImportTaskBatches", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "DescribeImportTaskBatchesCommand")
|
|
14
|
+
.sc(DescribeImportTaskBatches)
|
|
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 { DescribeImportTasks } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeImportTasksCommand 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", "DescribeImportTasks", {})
|
|
13
|
+
.n("CloudWatchLogsClient", "DescribeImportTasksCommand")
|
|
14
|
+
.sc(DescribeImportTasks)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from "./AssociateKmsKeyCommand";
|
|
2
2
|
export * from "./AssociateSourceToS3TableIntegrationCommand";
|
|
3
3
|
export * from "./CancelExportTaskCommand";
|
|
4
|
+
export * from "./CancelImportTaskCommand";
|
|
4
5
|
export * from "./CreateDeliveryCommand";
|
|
5
6
|
export * from "./CreateExportTaskCommand";
|
|
7
|
+
export * from "./CreateImportTaskCommand";
|
|
6
8
|
export * from "./CreateLogAnomalyDetectorCommand";
|
|
7
9
|
export * from "./CreateLogGroupCommand";
|
|
8
10
|
export * from "./CreateLogStreamCommand";
|
|
@@ -34,6 +36,8 @@ export * from "./DescribeDeliverySourcesCommand";
|
|
|
34
36
|
export * from "./DescribeDestinationsCommand";
|
|
35
37
|
export * from "./DescribeExportTasksCommand";
|
|
36
38
|
export * from "./DescribeFieldIndexesCommand";
|
|
39
|
+
export * from "./DescribeImportTaskBatchesCommand";
|
|
40
|
+
export * from "./DescribeImportTasksCommand";
|
|
37
41
|
export * from "./DescribeIndexPoliciesCommand";
|
|
38
42
|
export * from "./DescribeLogGroupsCommand";
|
|
39
43
|
export * from "./DescribeLogStreamsCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -35,6 +35,12 @@ export const EvaluationFrequency = {
|
|
|
35
35
|
TEN_MIN: "TEN_MIN",
|
|
36
36
|
THIRTY_MIN: "THIRTY_MIN",
|
|
37
37
|
};
|
|
38
|
+
export const ImportStatus = {
|
|
39
|
+
CANCELLED: "CANCELLED",
|
|
40
|
+
COMPLETED: "COMPLETED",
|
|
41
|
+
FAILED: "FAILED",
|
|
42
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
43
|
+
};
|
|
38
44
|
export const OutputFormat = {
|
|
39
45
|
JSON: "json",
|
|
40
46
|
PARQUET: "parquet",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CloudWatchLogsClient } from "../CloudWatchLogsClient";
|
|
3
|
+
import { ListAggregateLogGroupSummariesCommand, } from "../commands/ListAggregateLogGroupSummariesCommand";
|
|
4
|
+
export const paginateListAggregateLogGroupSummaries = createPaginator(CloudWatchLogsClient, ListAggregateLogGroupSummariesCommand, "nextToken", "nextToken", "limit");
|
|
@@ -11,6 +11,7 @@ export * from "./FilterLogEventsPaginator";
|
|
|
11
11
|
export * from "./Interfaces";
|
|
12
12
|
export * from "./GetLogEventsPaginator";
|
|
13
13
|
export * from "./GetScheduledQueryHistoryPaginator";
|
|
14
|
+
export * from "./ListAggregateLogGroupSummariesPaginator";
|
|
14
15
|
export * from "./ListAnomaliesPaginator";
|
|
15
16
|
export * from "./ListLogAnomalyDetectorsPaginator";
|
|
16
17
|
export * from "./ListLogGroupsForQueryPaginator";
|
|
@@ -25,6 +25,12 @@ const _CETR = "CancelExportTaskRequest";
|
|
|
25
25
|
const _CETRr = "CreateExportTaskRequest";
|
|
26
26
|
const _CETRre = "CreateExportTaskResponse";
|
|
27
27
|
const _CETr = "CreateExportTask";
|
|
28
|
+
const _CIT = "CancelImportTask";
|
|
29
|
+
const _CITR = "CancelImportTaskRequest";
|
|
30
|
+
const _CITRa = "CancelImportTaskResponse";
|
|
31
|
+
const _CITRr = "CreateImportTaskRequest";
|
|
32
|
+
const _CITRre = "CreateImportTaskResponse";
|
|
33
|
+
const _CITr = "CreateImportTask";
|
|
28
34
|
const _CLAD = "CreateLogAnomalyDetector";
|
|
29
35
|
const _CLADR = "CreateLogAnomalyDetectorRequest";
|
|
30
36
|
const _CLADRr = "CreateLogAnomalyDetectorResponse";
|
|
@@ -95,6 +101,12 @@ const _DIPResc = "DescribeIndexPoliciesResponse";
|
|
|
95
101
|
const _DIPe = "DescribeIndexPolicies";
|
|
96
102
|
const _DIR = "DeleteIntegrationRequest";
|
|
97
103
|
const _DIRe = "DeleteIntegrationResponse";
|
|
104
|
+
const _DIT = "DescribeImportTasks";
|
|
105
|
+
const _DITB = "DescribeImportTaskBatches";
|
|
106
|
+
const _DITBR = "DescribeImportTaskBatchesRequest";
|
|
107
|
+
const _DITBRe = "DescribeImportTaskBatchesResponse";
|
|
108
|
+
const _DITR = "DescribeImportTasksRequest";
|
|
109
|
+
const _DITRe = "DescribeImportTasksResponse";
|
|
98
110
|
const _DK = "DeleteKeys";
|
|
99
111
|
const _DKK = "DisassociateKmsKey";
|
|
100
112
|
const _DKKR = "DisassociateKmsKeyRequest";
|
|
@@ -219,18 +231,24 @@ const _GSQRe = "GetScheduledQueryResponse";
|
|
|
219
231
|
const _GT = "GetTransformer";
|
|
220
232
|
const _GTR = "GetTransformerRequest";
|
|
221
233
|
const _GTRe = "GetTransformerResponse";
|
|
234
|
+
const _I = "Import";
|
|
235
|
+
const _IB = "ImportBatch";
|
|
236
|
+
const _IBL = "ImportBatchList";
|
|
222
237
|
const _ID = "IntegrationDetails";
|
|
238
|
+
const _IF = "ImportFilter";
|
|
239
|
+
const _IL = "ImportList";
|
|
223
240
|
const _ILE = "InputLogEvent";
|
|
224
241
|
const _ILEn = "InputLogEvents";
|
|
225
242
|
const _IOE = "InvalidOperationException";
|
|
226
243
|
const _IP = "IndexPolicy";
|
|
227
244
|
const _IPE = "InvalidParameterException";
|
|
228
245
|
const _IPn = "IndexPolicies";
|
|
229
|
-
const _IS = "
|
|
246
|
+
const _IS = "ImportStatistics";
|
|
230
247
|
const _ISE = "InternalServerException";
|
|
231
248
|
const _ISEn = "InternalStreamingException";
|
|
232
249
|
const _ISTE = "InvalidSequenceTokenException";
|
|
233
|
-
const _ISn = "
|
|
250
|
+
const _ISn = "IntegrationSummary";
|
|
251
|
+
const _ISnt = "IntegrationSummaries";
|
|
234
252
|
const _LA = "ListAnomalies";
|
|
235
253
|
const _LALGS = "ListAggregateLogGroupSummaries";
|
|
236
254
|
const _LALGSR = "ListAggregateLogGroupSummariesRequest";
|
|
@@ -482,17 +500,20 @@ const _ap = "application";
|
|
|
482
500
|
const _ar = "arn";
|
|
483
501
|
const _at = "attributes";
|
|
484
502
|
const _b = "baseline";
|
|
503
|
+
const _bI = "batchId";
|
|
504
|
+
const _bIS = "batchImportStatus";
|
|
505
|
+
const _bIy = "bytesImported";
|
|
485
506
|
const _bS = "bytesScanned";
|
|
486
507
|
const _c = "client";
|
|
487
508
|
const _cA = "collectionArn";
|
|
488
509
|
const _cE = "collectionEndpoint";
|
|
489
|
-
const _cT = "
|
|
510
|
+
const _cT = "creationTime";
|
|
490
511
|
const _cTS = "creationTimeStamp";
|
|
491
512
|
const _cTSr = "createdTimeStamp";
|
|
492
513
|
const _cTl = "clientToken";
|
|
493
|
-
const _cTo = "
|
|
494
|
-
const
|
|
495
|
-
const
|
|
514
|
+
const _cTo = "configurationTemplates";
|
|
515
|
+
const _cTom = "completionTime";
|
|
516
|
+
const _cTr = "createTime";
|
|
496
517
|
const _cV = "copyValue";
|
|
497
518
|
const _co = "columns";
|
|
498
519
|
const _cod = "code";
|
|
@@ -543,14 +564,15 @@ const _dis = "distribution";
|
|
|
543
564
|
const _e = "error";
|
|
544
565
|
const _eBS = "estimatedBytesSkipped";
|
|
545
566
|
const _eCO = "endCharOffset";
|
|
567
|
+
const _eET = "endEventTime";
|
|
546
568
|
const _eF = "evaluationFrequency";
|
|
547
569
|
const _eHCP = "enableHiveCompatiblePath";
|
|
548
570
|
const _eI = "executionInfo";
|
|
549
571
|
const _eIv = "eventId";
|
|
550
572
|
const _eK = "encryptionKey";
|
|
551
573
|
const _eLEEI = "expiredLogEventEndIndex";
|
|
552
|
-
const _eM = "
|
|
553
|
-
const
|
|
574
|
+
const _eM = "errorMessage";
|
|
575
|
+
const _eMv = "eventMessage";
|
|
554
576
|
const _eN = "eventNumber";
|
|
555
577
|
const _eP = "encryptionPolicy";
|
|
556
578
|
const _eRA = "executionRoleArn";
|
|
@@ -600,8 +622,12 @@ const _h = "histogram";
|
|
|
600
622
|
const _hE = "httpError";
|
|
601
623
|
const _i = "identifier";
|
|
602
624
|
const _iA = "integrationArn";
|
|
625
|
+
const _iB = "importBatches";
|
|
603
626
|
const _iD = "integrationDetails";
|
|
627
|
+
const _iDA = "importDestinationArn";
|
|
604
628
|
const _iDs = "isDynamic";
|
|
629
|
+
const _iF = "importFilter";
|
|
630
|
+
const _iI = "importId";
|
|
605
631
|
const _iLA = "includeLinkedAccounts";
|
|
606
632
|
const _iN = "integrationName";
|
|
607
633
|
const _iNP = "integrationNamePrefix";
|
|
@@ -609,12 +635,17 @@ const _iP = "indexPolicies";
|
|
|
609
635
|
const _iPLS = "isPatternLevelSuppression";
|
|
610
636
|
const _iPn = "inheritedProperties";
|
|
611
637
|
const _iPnd = "indexPolicy";
|
|
612
|
-
const
|
|
613
|
-
const
|
|
638
|
+
const _iRA = "importRoleArn";
|
|
639
|
+
const _iS = "importStatistics";
|
|
640
|
+
const _iSA = "importSourceArn";
|
|
641
|
+
const _iSm = "importStatus";
|
|
642
|
+
const _iSn = "integrationStatus";
|
|
643
|
+
const _iSnt = "integrationSummaries";
|
|
614
644
|
const _iT = "ingestionTime";
|
|
615
645
|
const _iTN = "inferredTokenName";
|
|
616
646
|
const _iTn = "integrationType";
|
|
617
647
|
const _id = "id";
|
|
648
|
+
const _im = "imports";
|
|
618
649
|
const _in = "interleaved";
|
|
619
650
|
const _k = "key";
|
|
620
651
|
const _kA = "keyAttributes";
|
|
@@ -760,6 +791,7 @@ const _sD = "suppressedDate";
|
|
|
760
791
|
const _sDC = "s3DeliveryConfiguration";
|
|
761
792
|
const _sE = "scheduleExpression";
|
|
762
793
|
const _sET = "scheduleEndTime";
|
|
794
|
+
const _sETt = "startEventTime";
|
|
763
795
|
const _sF = "subscriptionFilters";
|
|
764
796
|
const _sFH = "startFromHead";
|
|
765
797
|
const _sI = "sessionId";
|
|
@@ -880,6 +912,15 @@ export var AssociateSourceToS3TableIntegrationRequest = [
|
|
|
880
912
|
];
|
|
881
913
|
export var AssociateSourceToS3TableIntegrationResponse = [3, n0, _ASTSTIRs, 0, [_i], [0]];
|
|
882
914
|
export var CancelExportTaskRequest = [3, n0, _CETR, 0, [_tI], [0]];
|
|
915
|
+
export var CancelImportTaskRequest = [3, n0, _CITR, 0, [_iI], [0]];
|
|
916
|
+
export var CancelImportTaskResponse = [
|
|
917
|
+
3,
|
|
918
|
+
n0,
|
|
919
|
+
_CITRa,
|
|
920
|
+
0,
|
|
921
|
+
[_iI, _iS, _iSm, _cT, _lUT],
|
|
922
|
+
[0, () => ImportStatistics, 0, 1, 1],
|
|
923
|
+
];
|
|
883
924
|
export var ConfigurationTemplate = [
|
|
884
925
|
3,
|
|
885
926
|
n0,
|
|
@@ -918,6 +959,15 @@ export var CreateExportTaskRequest = [
|
|
|
918
959
|
[0, 0, 0, 1, 1, 0, 0],
|
|
919
960
|
];
|
|
920
961
|
export var CreateExportTaskResponse = [3, n0, _CETRre, 0, [_tI], [0]];
|
|
962
|
+
export var CreateImportTaskRequest = [
|
|
963
|
+
3,
|
|
964
|
+
n0,
|
|
965
|
+
_CITRr,
|
|
966
|
+
0,
|
|
967
|
+
[_iSA, _iRA, _iF],
|
|
968
|
+
[0, 0, () => ImportFilter],
|
|
969
|
+
];
|
|
970
|
+
export var CreateImportTaskResponse = [3, n0, _CITRre, 0, [_iI, _iDA, _cT], [0, 0, 1]];
|
|
921
971
|
export var CreateLogAnomalyDetectorRequest = [
|
|
922
972
|
3,
|
|
923
973
|
n0,
|
|
@@ -1036,7 +1086,7 @@ export var DescribeConfigurationTemplatesResponse = [
|
|
|
1036
1086
|
n0,
|
|
1037
1087
|
_DCTRe,
|
|
1038
1088
|
0,
|
|
1039
|
-
[
|
|
1089
|
+
[_cTo, _nT],
|
|
1040
1090
|
[() => ConfigurationTemplates, 0],
|
|
1041
1091
|
];
|
|
1042
1092
|
export var DescribeDeliveriesRequest = [3, n0, _DDRes, 0, [_nT, _li], [0, 1]];
|
|
@@ -1079,6 +1129,31 @@ export var DescribeFieldIndexesResponse = [
|
|
|
1079
1129
|
[_fI, _nT],
|
|
1080
1130
|
[() => FieldIndexes, 0],
|
|
1081
1131
|
];
|
|
1132
|
+
export var DescribeImportTaskBatchesRequest = [
|
|
1133
|
+
3,
|
|
1134
|
+
n0,
|
|
1135
|
+
_DITBR,
|
|
1136
|
+
0,
|
|
1137
|
+
[_iI, _bIS, _li, _nT],
|
|
1138
|
+
[0, 64 | 0, 1, 0],
|
|
1139
|
+
];
|
|
1140
|
+
export var DescribeImportTaskBatchesResponse = [
|
|
1141
|
+
3,
|
|
1142
|
+
n0,
|
|
1143
|
+
_DITBRe,
|
|
1144
|
+
0,
|
|
1145
|
+
[_iSA, _iI, _iB, _nT],
|
|
1146
|
+
[0, 0, () => ImportBatchList, 0],
|
|
1147
|
+
];
|
|
1148
|
+
export var DescribeImportTasksRequest = [
|
|
1149
|
+
3,
|
|
1150
|
+
n0,
|
|
1151
|
+
_DITR,
|
|
1152
|
+
0,
|
|
1153
|
+
[_iI, _iSm, _iSA, _li, _nT],
|
|
1154
|
+
[0, 0, 0, 1, 0],
|
|
1155
|
+
];
|
|
1156
|
+
export var DescribeImportTasksResponse = [3, n0, _DITRe, 0, [_im, _nT], [() => ImportList, 0]];
|
|
1082
1157
|
export var DescribeIndexPoliciesRequest = [3, n0, _DIPRes, 0, [_lGI, _nT], [64 | 0, 0]];
|
|
1083
1158
|
export var DescribeIndexPoliciesResponse = [
|
|
1084
1159
|
3,
|
|
@@ -1179,7 +1254,7 @@ export var DescribeSubscriptionFiltersResponse = [
|
|
|
1179
1254
|
[_sF, _nT],
|
|
1180
1255
|
[() => SubscriptionFilters, 0],
|
|
1181
1256
|
];
|
|
1182
|
-
export var Destination = [3, n0, _De, 0, [_dNe, _tA, _rAo, _aPc, _ar,
|
|
1257
|
+
export var Destination = [3, n0, _De, 0, [_dNe, _tA, _rAo, _aPc, _ar, _cT], [0, 0, 0, 0, 0, 1]];
|
|
1183
1258
|
export var DestinationConfiguration = [3, n0, _DC, 0, [_sCo], [() => S3Configuration]];
|
|
1184
1259
|
export var DisassociateKmsKeyRequest = [3, n0, _DKKR, 0, [_lGN, _rI], [0, 0]];
|
|
1185
1260
|
export var DisassociateSourceFromS3TableIntegrationRequest = [3, n0, _DSFSTIR, 0, [_i], [0]];
|
|
@@ -1193,7 +1268,7 @@ export var ExportTask = [
|
|
|
1193
1268
|
[_tI, _tN, _lGN, _f, _to, _des, _dP, _sta, _eI],
|
|
1194
1269
|
[0, 0, 0, 1, 1, 0, 0, () => ExportTaskStatus, () => ExportTaskExecutionInfo],
|
|
1195
1270
|
];
|
|
1196
|
-
export var ExportTaskExecutionInfo = [3, n0, _ETEI, 0, [
|
|
1271
|
+
export var ExportTaskExecutionInfo = [3, n0, _ETEI, 0, [_cT, _cTom], [1, 1]];
|
|
1197
1272
|
export var ExportTaskStatus = [3, n0, _ETS, 0, [_cod, _m], [0, 0]];
|
|
1198
1273
|
export var FieldIndex = [
|
|
1199
1274
|
3,
|
|
@@ -1244,7 +1319,7 @@ export var GetIntegrationResponse = [
|
|
|
1244
1319
|
n0,
|
|
1245
1320
|
_GIRe,
|
|
1246
1321
|
0,
|
|
1247
|
-
[_iN, _iTn,
|
|
1322
|
+
[_iN, _iTn, _iSn, _iD],
|
|
1248
1323
|
[0, 0, 0, () => IntegrationDetails],
|
|
1249
1324
|
];
|
|
1250
1325
|
export var GetLogAnomalyDetectorRequest = [3, n0, _GLADR, 0, [_aDA], [0]];
|
|
@@ -1318,7 +1393,7 @@ export var GetScheduledQueryResponse = [
|
|
|
1318
1393
|
n0,
|
|
1319
1394
|
_GSQRe,
|
|
1320
1395
|
0,
|
|
1321
|
-
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA,
|
|
1396
|
+
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA, _cT, _lUT],
|
|
1322
1397
|
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 1, () => DestinationConfiguration, 0, 1, 0, 1, 1, 0, 1, 1],
|
|
1323
1398
|
];
|
|
1324
1399
|
export var GetTransformerRequest = [3, n0, _GTR, 0, [_lGIo], [0]];
|
|
@@ -1327,14 +1402,25 @@ export var GetTransformerResponse = [
|
|
|
1327
1402
|
n0,
|
|
1328
1403
|
_GTRe,
|
|
1329
1404
|
0,
|
|
1330
|
-
[_lGIo,
|
|
1405
|
+
[_lGIo, _cT, _lMT, _tC],
|
|
1331
1406
|
[0, 1, 1, () => Processors],
|
|
1332
1407
|
];
|
|
1333
1408
|
export var Grok = [3, n0, _G, 0, [_so, _ma], [0, 0]];
|
|
1334
1409
|
export var GroupingIdentifier = [3, n0, _GI, 0, [_k, _v], [0, 0]];
|
|
1410
|
+
export var Import = [
|
|
1411
|
+
3,
|
|
1412
|
+
n0,
|
|
1413
|
+
_I,
|
|
1414
|
+
0,
|
|
1415
|
+
[_iI, _iSA, _iSm, _iDA, _iS, _iF, _cT, _lUT, _eM],
|
|
1416
|
+
[0, 0, 0, 0, () => ImportStatistics, () => ImportFilter, 1, 1, 0],
|
|
1417
|
+
];
|
|
1418
|
+
export var ImportBatch = [3, n0, _IB, 0, [_bI, _sta, _eM], [0, 0, 0]];
|
|
1419
|
+
export var ImportFilter = [3, n0, _IF, 0, [_sETt, _eET], [1, 1]];
|
|
1420
|
+
export var ImportStatistics = [3, n0, _IS, 0, [_bIy], [1]];
|
|
1335
1421
|
export var IndexPolicy = [3, n0, _IP, 0, [_lGIo, _lUTa, _pD, _pN, _so], [0, 1, 0, 0, 0]];
|
|
1336
1422
|
export var InputLogEvent = [3, n0, _ILE, 0, [_tim, _m], [1, 0]];
|
|
1337
|
-
export var IntegrationSummary = [3, n0,
|
|
1423
|
+
export var IntegrationSummary = [3, n0, _ISn, 0, [_iN, _iTn, _iSn], [0, 0, 0]];
|
|
1338
1424
|
export var InternalServerException = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_m], [0]];
|
|
1339
1425
|
TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
|
|
1340
1426
|
export var InternalStreamingException = [-3, n0, _ISEn, { [_e]: _c }, [_m], [0]];
|
|
@@ -1365,8 +1451,8 @@ export var ListAggregateLogGroupSummariesResponse = [
|
|
|
1365
1451
|
];
|
|
1366
1452
|
export var ListAnomaliesRequest = [3, n0, _LAR, 0, [_aDA, _sS, _li, _nT], [0, 0, 1, 0]];
|
|
1367
1453
|
export var ListAnomaliesResponse = [3, n0, _LARi, 0, [_an, _nT], [() => Anomalies, 0]];
|
|
1368
|
-
export var ListIntegrationsRequest = [3, n0, _LIR, 0, [_iNP, _iTn,
|
|
1369
|
-
export var ListIntegrationsResponse = [3, n0, _LIRi, 0, [
|
|
1454
|
+
export var ListIntegrationsRequest = [3, n0, _LIR, 0, [_iNP, _iTn, _iSn], [0, 0, 0]];
|
|
1455
|
+
export var ListIntegrationsResponse = [3, n0, _LIRi, 0, [_iSnt], [() => IntegrationSummaries]];
|
|
1370
1456
|
export var ListLogAnomalyDetectorsRequest = [3, n0, _LLADR, 0, [_fLGA, _li, _nT], [0, 1, 0]];
|
|
1371
1457
|
export var ListLogAnomalyDetectorsResponse = [
|
|
1372
1458
|
3,
|
|
@@ -1457,7 +1543,7 @@ export var LogGroup = [
|
|
|
1457
1543
|
n0,
|
|
1458
1544
|
_LG,
|
|
1459
1545
|
0,
|
|
1460
|
-
[_lGN,
|
|
1546
|
+
[_lGN, _cT, _rID, _mFC, _ar, _sB, _kKI, _dPS, _iPn, _lGCo, _lGA, _dPE],
|
|
1461
1547
|
[0, 1, 1, 1, 0, 1, 0, 0, 64 | 0, 0, 0, 2],
|
|
1462
1548
|
];
|
|
1463
1549
|
export var LogGroupField = [3, n0, _LGF, 0, [_n, _pe], [0, 1]];
|
|
@@ -1467,7 +1553,7 @@ export var LogStream = [
|
|
|
1467
1553
|
n0,
|
|
1468
1554
|
_LS,
|
|
1469
1555
|
0,
|
|
1470
|
-
[_lSN,
|
|
1556
|
+
[_lSN, _cT, _fETi, _lETa, _lIT, _uST, _ar, _sB],
|
|
1471
1557
|
[0, 1, 1, 1, 1, 0, 0, 1],
|
|
1472
1558
|
];
|
|
1473
1559
|
export var LowerCaseString = [3, n0, _LCS, 0, [_wK], [64 | 0]];
|
|
@@ -1485,10 +1571,10 @@ export var MetricFilter = [
|
|
|
1485
1571
|
n0,
|
|
1486
1572
|
_MF,
|
|
1487
1573
|
0,
|
|
1488
|
-
[_fN, _fP, _mT,
|
|
1574
|
+
[_fN, _fP, _mT, _cT, _lGN, _aOTL, _fSC, _eSFD],
|
|
1489
1575
|
[0, 0, () => MetricTransformations, 1, 0, 2, 0, 64 | 0],
|
|
1490
1576
|
];
|
|
1491
|
-
export var MetricFilterMatchRecord = [3, n0, _MFMR, 0, [_eN,
|
|
1577
|
+
export var MetricFilterMatchRecord = [3, n0, _MFMR, 0, [_eN, _eMv, _eV], [1, 0, 128 | 0]];
|
|
1492
1578
|
export var MetricTransformation = [
|
|
1493
1579
|
3,
|
|
1494
1580
|
n0,
|
|
@@ -1709,7 +1795,7 @@ export var PutIntegrationRequest = [
|
|
|
1709
1795
|
[_iN, _rC, _iTn],
|
|
1710
1796
|
[0, () => ResourceConfig, 0],
|
|
1711
1797
|
];
|
|
1712
|
-
export var PutIntegrationResponse = [3, n0, _PIRu, 0, [_iN,
|
|
1798
|
+
export var PutIntegrationResponse = [3, n0, _PIRu, 0, [_iN, _iSn], [0, 0]];
|
|
1713
1799
|
export var PutLogEventsRequest = [
|
|
1714
1800
|
3,
|
|
1715
1801
|
n0,
|
|
@@ -1773,7 +1859,7 @@ export var QueryDefinition = [
|
|
|
1773
1859
|
[_qL, _qDI, _n, _qS, _lM, _lGNo],
|
|
1774
1860
|
[0, 0, 0, 0, 1, 64 | 0],
|
|
1775
1861
|
];
|
|
1776
|
-
export var QueryInfo = [3, n0, _QI, 0, [_qL, _qI, _qS, _sta,
|
|
1862
|
+
export var QueryInfo = [3, n0, _QI, 0, [_qL, _qI, _qS, _sta, _cTr, _lGN], [0, 0, 0, 0, 1, 0]];
|
|
1777
1863
|
export var QueryStatistics = [
|
|
1778
1864
|
3,
|
|
1779
1865
|
n0,
|
|
@@ -1815,7 +1901,7 @@ export var ScheduledQueryDestination = [
|
|
|
1815
1901
|
n0,
|
|
1816
1902
|
_SQD,
|
|
1817
1903
|
0,
|
|
1818
|
-
[_dT, _dI, _sta, _pIr,
|
|
1904
|
+
[_dT, _dI, _sta, _pIr, _eM],
|
|
1819
1905
|
[0, 0, 0, 0, 0],
|
|
1820
1906
|
];
|
|
1821
1907
|
export var ScheduledQuerySummary = [
|
|
@@ -1823,7 +1909,7 @@ export var ScheduledQuerySummary = [
|
|
|
1823
1909
|
n0,
|
|
1824
1910
|
_SQS,
|
|
1825
1911
|
0,
|
|
1826
|
-
[_sQA, _n, _st, _lTT, _lES, _sE, _ti, _dC,
|
|
1912
|
+
[_sQA, _n, _st, _lTT, _lES, _sE, _ti, _dC, _cT, _lUT],
|
|
1827
1913
|
[0, 0, 0, 1, 0, 0, 0, () => DestinationConfiguration, 1, 1],
|
|
1828
1914
|
];
|
|
1829
1915
|
export var SearchedLogStream = [3, n0, _SLS, 0, [_lSN, _sCe], [0, 2]];
|
|
@@ -1869,7 +1955,7 @@ export var SubscriptionFilter = [
|
|
|
1869
1955
|
n0,
|
|
1870
1956
|
_SF,
|
|
1871
1957
|
0,
|
|
1872
|
-
[_fN, _lGN, _fP, _dA, _rAo, _dis, _aOTL,
|
|
1958
|
+
[_fN, _lGN, _fP, _dA, _rAo, _dis, _aOTL, _cT, _fSC, _eSF],
|
|
1873
1959
|
[0, 0, 0, 0, 0, 0, 2, 1, 0, 64 | 0],
|
|
1874
1960
|
];
|
|
1875
1961
|
export var SubstituteString = [3, n0, _SSu, 0, [_en], [() => SubstituteStringEntries]];
|
|
@@ -1885,13 +1971,13 @@ export var ThrottlingException = [-3, n0, _TE, { [_e]: _c }, [_m], [0]];
|
|
|
1885
1971
|
TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
|
|
1886
1972
|
export var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m, _rN], [0, 0]];
|
|
1887
1973
|
TypeRegistry.for(n0).registerError(TooManyTagsException, __TooManyTagsException);
|
|
1888
|
-
export var TransformedLogRecord = [3, n0, _TLR, 0, [_eN,
|
|
1974
|
+
export var TransformedLogRecord = [3, n0, _TLR, 0, [_eN, _eMv, _tEM], [1, 0, 0]];
|
|
1889
1975
|
export var TriggerHistoryRecord = [
|
|
1890
1976
|
3,
|
|
1891
1977
|
n0,
|
|
1892
1978
|
_THR,
|
|
1893
1979
|
0,
|
|
1894
|
-
[_qI, _eSx, _tTr,
|
|
1980
|
+
[_qI, _eSx, _tTr, _eM, _dest],
|
|
1895
1981
|
[0, 0, 1, 0, () => ScheduledQueryDestinationList],
|
|
1896
1982
|
];
|
|
1897
1983
|
export var TrimString = [3, n0, _TS, 0, [_wK], [64 | 0]];
|
|
@@ -1939,7 +2025,7 @@ export var UpdateScheduledQueryResponse = [
|
|
|
1939
2025
|
n0,
|
|
1940
2026
|
_USQRp,
|
|
1941
2027
|
0,
|
|
1942
|
-
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA,
|
|
2028
|
+
[_sQA, _n, _d, _qL, _qS, _lGI, _sE, _ti, _sTO, _dC, _st, _lTT, _lES, _sST, _sET, _eRA, _cT, _lUT],
|
|
1943
2029
|
[0, 0, 0, 0, 0, 64 | 0, 0, 0, 1, () => DestinationConfiguration, 0, 1, 0, 1, 1, 0, 1, 1],
|
|
1944
2030
|
];
|
|
1945
2031
|
export var UpperCaseString = [3, n0, _UCS, 0, [_wK], [64 | 0]];
|
|
@@ -1977,11 +2063,14 @@ export var FieldIndexes = [1, n0, _FIi, 0, () => FieldIndex];
|
|
|
1977
2063
|
export var FieldIndexNames = 64 | 0;
|
|
1978
2064
|
export var FilteredLogEvents = [1, n0, _FLEi, 0, () => FilteredLogEvent];
|
|
1979
2065
|
export var GroupingIdentifiers = [1, n0, _GIr, 0, () => GroupingIdentifier];
|
|
2066
|
+
export var ImportBatchList = [1, n0, _IBL, 0, () => ImportBatch];
|
|
2067
|
+
export var ImportList = [1, n0, _IL, 0, () => Import];
|
|
2068
|
+
export var ImportStatusList = 64 | 0;
|
|
1980
2069
|
export var IndexPolicies = [1, n0, _IPn, 0, () => IndexPolicy];
|
|
1981
2070
|
export var InheritedProperties = 64 | 0;
|
|
1982
2071
|
export var InputLogEvents = [1, n0, _ILEn, 0, () => InputLogEvent];
|
|
1983
2072
|
export var InputLogStreamNames = 64 | 0;
|
|
1984
|
-
export var IntegrationSummaries = [1, n0,
|
|
2073
|
+
export var IntegrationSummaries = [1, n0, _ISnt, 0, () => IntegrationSummary];
|
|
1985
2074
|
export var LiveTailSessionResults = [1, n0, _LTSR, 0, () => LiveTailSessionLogEvent];
|
|
1986
2075
|
export var LogFieldsList = [1, n0, _LFL, 0, () => LogFieldsListItem];
|
|
1987
2076
|
export var LogGroupArnList = 64 | 0;
|
|
@@ -2070,6 +2159,14 @@ export var AssociateSourceToS3TableIntegration = [
|
|
|
2070
2159
|
() => AssociateSourceToS3TableIntegrationResponse,
|
|
2071
2160
|
];
|
|
2072
2161
|
export var CancelExportTask = [9, n0, _CET, 0, () => CancelExportTaskRequest, () => __Unit];
|
|
2162
|
+
export var CancelImportTask = [
|
|
2163
|
+
9,
|
|
2164
|
+
n0,
|
|
2165
|
+
_CIT,
|
|
2166
|
+
0,
|
|
2167
|
+
() => CancelImportTaskRequest,
|
|
2168
|
+
() => CancelImportTaskResponse,
|
|
2169
|
+
];
|
|
2073
2170
|
export var CreateDelivery = [
|
|
2074
2171
|
9,
|
|
2075
2172
|
n0,
|
|
@@ -2086,6 +2183,14 @@ export var CreateExportTask = [
|
|
|
2086
2183
|
() => CreateExportTaskRequest,
|
|
2087
2184
|
() => CreateExportTaskResponse,
|
|
2088
2185
|
];
|
|
2186
|
+
export var CreateImportTask = [
|
|
2187
|
+
9,
|
|
2188
|
+
n0,
|
|
2189
|
+
_CITr,
|
|
2190
|
+
0,
|
|
2191
|
+
() => CreateImportTaskRequest,
|
|
2192
|
+
() => CreateImportTaskResponse,
|
|
2193
|
+
];
|
|
2089
2194
|
export var CreateLogAnomalyDetector = [
|
|
2090
2195
|
9,
|
|
2091
2196
|
n0,
|
|
@@ -2278,6 +2383,22 @@ export var DescribeFieldIndexes = [
|
|
|
2278
2383
|
() => DescribeFieldIndexesRequest,
|
|
2279
2384
|
() => DescribeFieldIndexesResponse,
|
|
2280
2385
|
];
|
|
2386
|
+
export var DescribeImportTaskBatches = [
|
|
2387
|
+
9,
|
|
2388
|
+
n0,
|
|
2389
|
+
_DITB,
|
|
2390
|
+
0,
|
|
2391
|
+
() => DescribeImportTaskBatchesRequest,
|
|
2392
|
+
() => DescribeImportTaskBatchesResponse,
|
|
2393
|
+
];
|
|
2394
|
+
export var DescribeImportTasks = [
|
|
2395
|
+
9,
|
|
2396
|
+
n0,
|
|
2397
|
+
_DIT,
|
|
2398
|
+
0,
|
|
2399
|
+
() => DescribeImportTasksRequest,
|
|
2400
|
+
() => DescribeImportTasksResponse,
|
|
2401
|
+
];
|
|
2281
2402
|
export var DescribeIndexPolicies = [
|
|
2282
2403
|
9,
|
|
2283
2404
|
n0,
|
|
@@ -3,8 +3,10 @@ import { CloudWatchLogsClient } from "./CloudWatchLogsClient";
|
|
|
3
3
|
import { AssociateKmsKeyCommandInput, AssociateKmsKeyCommandOutput } from "./commands/AssociateKmsKeyCommand";
|
|
4
4
|
import { AssociateSourceToS3TableIntegrationCommandInput, AssociateSourceToS3TableIntegrationCommandOutput } from "./commands/AssociateSourceToS3TableIntegrationCommand";
|
|
5
5
|
import { CancelExportTaskCommandInput, CancelExportTaskCommandOutput } from "./commands/CancelExportTaskCommand";
|
|
6
|
+
import { CancelImportTaskCommandInput, CancelImportTaskCommandOutput } from "./commands/CancelImportTaskCommand";
|
|
6
7
|
import { CreateDeliveryCommandInput, CreateDeliveryCommandOutput } from "./commands/CreateDeliveryCommand";
|
|
7
8
|
import { CreateExportTaskCommandInput, CreateExportTaskCommandOutput } from "./commands/CreateExportTaskCommand";
|
|
9
|
+
import { CreateImportTaskCommandInput, CreateImportTaskCommandOutput } from "./commands/CreateImportTaskCommand";
|
|
8
10
|
import { CreateLogAnomalyDetectorCommandInput, CreateLogAnomalyDetectorCommandOutput } from "./commands/CreateLogAnomalyDetectorCommand";
|
|
9
11
|
import { CreateLogGroupCommandInput, CreateLogGroupCommandOutput } from "./commands/CreateLogGroupCommand";
|
|
10
12
|
import { CreateLogStreamCommandInput, CreateLogStreamCommandOutput } from "./commands/CreateLogStreamCommand";
|
|
@@ -36,6 +38,8 @@ import { DescribeDeliverySourcesCommandInput, DescribeDeliverySourcesCommandOutp
|
|
|
36
38
|
import { DescribeDestinationsCommandInput, DescribeDestinationsCommandOutput } from "./commands/DescribeDestinationsCommand";
|
|
37
39
|
import { DescribeExportTasksCommandInput, DescribeExportTasksCommandOutput } from "./commands/DescribeExportTasksCommand";
|
|
38
40
|
import { DescribeFieldIndexesCommandInput, DescribeFieldIndexesCommandOutput } from "./commands/DescribeFieldIndexesCommand";
|
|
41
|
+
import { DescribeImportTaskBatchesCommandInput, DescribeImportTaskBatchesCommandOutput } from "./commands/DescribeImportTaskBatchesCommand";
|
|
42
|
+
import { DescribeImportTasksCommandInput, DescribeImportTasksCommandOutput } from "./commands/DescribeImportTasksCommand";
|
|
39
43
|
import { DescribeIndexPoliciesCommandInput, DescribeIndexPoliciesCommandOutput } from "./commands/DescribeIndexPoliciesCommand";
|
|
40
44
|
import { DescribeLogGroupsCommandInput, DescribeLogGroupsCommandOutput } from "./commands/DescribeLogGroupsCommand";
|
|
41
45
|
import { DescribeLogStreamsCommandInput, DescribeLogStreamsCommandOutput } from "./commands/DescribeLogStreamsCommand";
|
|
@@ -122,6 +126,12 @@ export interface CloudWatchLogs {
|
|
|
122
126
|
cancelExportTask(args: CancelExportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelExportTaskCommandOutput>;
|
|
123
127
|
cancelExportTask(args: CancelExportTaskCommandInput, cb: (err: any, data?: CancelExportTaskCommandOutput) => void): void;
|
|
124
128
|
cancelExportTask(args: CancelExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelExportTaskCommandOutput) => void): void;
|
|
129
|
+
/**
|
|
130
|
+
* @see {@link CancelImportTaskCommand}
|
|
131
|
+
*/
|
|
132
|
+
cancelImportTask(args: CancelImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CancelImportTaskCommandOutput>;
|
|
133
|
+
cancelImportTask(args: CancelImportTaskCommandInput, cb: (err: any, data?: CancelImportTaskCommandOutput) => void): void;
|
|
134
|
+
cancelImportTask(args: CancelImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelImportTaskCommandOutput) => void): void;
|
|
125
135
|
/**
|
|
126
136
|
* @see {@link CreateDeliveryCommand}
|
|
127
137
|
*/
|
|
@@ -134,6 +144,12 @@ export interface CloudWatchLogs {
|
|
|
134
144
|
createExportTask(args: CreateExportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateExportTaskCommandOutput>;
|
|
135
145
|
createExportTask(args: CreateExportTaskCommandInput, cb: (err: any, data?: CreateExportTaskCommandOutput) => void): void;
|
|
136
146
|
createExportTask(args: CreateExportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExportTaskCommandOutput) => void): void;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link CreateImportTaskCommand}
|
|
149
|
+
*/
|
|
150
|
+
createImportTask(args: CreateImportTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateImportTaskCommandOutput>;
|
|
151
|
+
createImportTask(args: CreateImportTaskCommandInput, cb: (err: any, data?: CreateImportTaskCommandOutput) => void): void;
|
|
152
|
+
createImportTask(args: CreateImportTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateImportTaskCommandOutput) => void): void;
|
|
137
153
|
/**
|
|
138
154
|
* @see {@link CreateLogAnomalyDetectorCommand}
|
|
139
155
|
*/
|
|
@@ -327,6 +343,19 @@ export interface CloudWatchLogs {
|
|
|
327
343
|
describeFieldIndexes(args: DescribeFieldIndexesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFieldIndexesCommandOutput>;
|
|
328
344
|
describeFieldIndexes(args: DescribeFieldIndexesCommandInput, cb: (err: any, data?: DescribeFieldIndexesCommandOutput) => void): void;
|
|
329
345
|
describeFieldIndexes(args: DescribeFieldIndexesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFieldIndexesCommandOutput) => void): void;
|
|
346
|
+
/**
|
|
347
|
+
* @see {@link DescribeImportTaskBatchesCommand}
|
|
348
|
+
*/
|
|
349
|
+
describeImportTaskBatches(args: DescribeImportTaskBatchesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImportTaskBatchesCommandOutput>;
|
|
350
|
+
describeImportTaskBatches(args: DescribeImportTaskBatchesCommandInput, cb: (err: any, data?: DescribeImportTaskBatchesCommandOutput) => void): void;
|
|
351
|
+
describeImportTaskBatches(args: DescribeImportTaskBatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportTaskBatchesCommandOutput) => void): void;
|
|
352
|
+
/**
|
|
353
|
+
* @see {@link DescribeImportTasksCommand}
|
|
354
|
+
*/
|
|
355
|
+
describeImportTasks(): Promise<DescribeImportTasksCommandOutput>;
|
|
356
|
+
describeImportTasks(args: DescribeImportTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeImportTasksCommandOutput>;
|
|
357
|
+
describeImportTasks(args: DescribeImportTasksCommandInput, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
358
|
+
describeImportTasks(args: DescribeImportTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeImportTasksCommandOutput) => void): void;
|
|
330
359
|
/**
|
|
331
360
|
* @see {@link DescribeIndexPoliciesCommand}
|
|
332
361
|
*/
|