@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
|
@@ -10,6 +10,8 @@ export declare var AssociateKmsKeyRequest: StaticStructureSchema;
|
|
|
10
10
|
export declare var AssociateSourceToS3TableIntegrationRequest: StaticStructureSchema;
|
|
11
11
|
export declare var AssociateSourceToS3TableIntegrationResponse: StaticStructureSchema;
|
|
12
12
|
export declare var CancelExportTaskRequest: StaticStructureSchema;
|
|
13
|
+
export declare var CancelImportTaskRequest: StaticStructureSchema;
|
|
14
|
+
export declare var CancelImportTaskResponse: StaticStructureSchema;
|
|
13
15
|
export declare var ConfigurationTemplate: StaticStructureSchema;
|
|
14
16
|
export declare var ConfigurationTemplateDeliveryConfigValues: StaticStructureSchema;
|
|
15
17
|
export declare var ConflictException: StaticErrorSchema;
|
|
@@ -19,6 +21,8 @@ export declare var CreateDeliveryRequest: StaticStructureSchema;
|
|
|
19
21
|
export declare var CreateDeliveryResponse: StaticStructureSchema;
|
|
20
22
|
export declare var CreateExportTaskRequest: StaticStructureSchema;
|
|
21
23
|
export declare var CreateExportTaskResponse: StaticStructureSchema;
|
|
24
|
+
export declare var CreateImportTaskRequest: StaticStructureSchema;
|
|
25
|
+
export declare var CreateImportTaskResponse: StaticStructureSchema;
|
|
22
26
|
export declare var CreateLogAnomalyDetectorRequest: StaticStructureSchema;
|
|
23
27
|
export declare var CreateLogAnomalyDetectorResponse: StaticStructureSchema;
|
|
24
28
|
export declare var CreateLogGroupRequest: StaticStructureSchema;
|
|
@@ -74,6 +78,10 @@ export declare var DescribeExportTasksRequest: StaticStructureSchema;
|
|
|
74
78
|
export declare var DescribeExportTasksResponse: StaticStructureSchema;
|
|
75
79
|
export declare var DescribeFieldIndexesRequest: StaticStructureSchema;
|
|
76
80
|
export declare var DescribeFieldIndexesResponse: StaticStructureSchema;
|
|
81
|
+
export declare var DescribeImportTaskBatchesRequest: StaticStructureSchema;
|
|
82
|
+
export declare var DescribeImportTaskBatchesResponse: StaticStructureSchema;
|
|
83
|
+
export declare var DescribeImportTasksRequest: StaticStructureSchema;
|
|
84
|
+
export declare var DescribeImportTasksResponse: StaticStructureSchema;
|
|
77
85
|
export declare var DescribeIndexPoliciesRequest: StaticStructureSchema;
|
|
78
86
|
export declare var DescribeIndexPoliciesResponse: StaticStructureSchema;
|
|
79
87
|
export declare var DescribeLogGroupsRequest: StaticStructureSchema;
|
|
@@ -138,6 +146,10 @@ export declare var GetTransformerRequest: StaticStructureSchema;
|
|
|
138
146
|
export declare var GetTransformerResponse: StaticStructureSchema;
|
|
139
147
|
export declare var Grok: StaticStructureSchema;
|
|
140
148
|
export declare var GroupingIdentifier: StaticStructureSchema;
|
|
149
|
+
export declare var Import: StaticStructureSchema;
|
|
150
|
+
export declare var ImportBatch: StaticStructureSchema;
|
|
151
|
+
export declare var ImportFilter: StaticStructureSchema;
|
|
152
|
+
export declare var ImportStatistics: StaticStructureSchema;
|
|
141
153
|
export declare var IndexPolicy: StaticStructureSchema;
|
|
142
154
|
export declare var InputLogEvent: StaticStructureSchema;
|
|
143
155
|
export declare var IntegrationSummary: StaticStructureSchema;
|
|
@@ -329,6 +341,9 @@ export declare var FieldIndexes: StaticListSchema;
|
|
|
329
341
|
export declare var FieldIndexNames: number;
|
|
330
342
|
export declare var FilteredLogEvents: StaticListSchema;
|
|
331
343
|
export declare var GroupingIdentifiers: StaticListSchema;
|
|
344
|
+
export declare var ImportBatchList: StaticListSchema;
|
|
345
|
+
export declare var ImportList: StaticListSchema;
|
|
346
|
+
export declare var ImportStatusList: number;
|
|
332
347
|
export declare var IndexPolicies: StaticListSchema;
|
|
333
348
|
export declare var InheritedProperties: number;
|
|
334
349
|
export declare var InputLogEvents: StaticListSchema;
|
|
@@ -396,8 +411,10 @@ export declare var StartLiveTailResponseStream: StaticStructureSchema;
|
|
|
396
411
|
export declare var AssociateKmsKey: StaticOperationSchema;
|
|
397
412
|
export declare var AssociateSourceToS3TableIntegration: StaticOperationSchema;
|
|
398
413
|
export declare var CancelExportTask: StaticOperationSchema;
|
|
414
|
+
export declare var CancelImportTask: StaticOperationSchema;
|
|
399
415
|
export declare var CreateDelivery: StaticOperationSchema;
|
|
400
416
|
export declare var CreateExportTask: StaticOperationSchema;
|
|
417
|
+
export declare var CreateImportTask: StaticOperationSchema;
|
|
401
418
|
export declare var CreateLogAnomalyDetector: StaticOperationSchema;
|
|
402
419
|
export declare var CreateLogGroup: StaticOperationSchema;
|
|
403
420
|
export declare var CreateLogStream: StaticOperationSchema;
|
|
@@ -429,6 +446,8 @@ export declare var DescribeDeliverySources: StaticOperationSchema;
|
|
|
429
446
|
export declare var DescribeDestinations: StaticOperationSchema;
|
|
430
447
|
export declare var DescribeExportTasks: StaticOperationSchema;
|
|
431
448
|
export declare var DescribeFieldIndexes: StaticOperationSchema;
|
|
449
|
+
export declare var DescribeImportTaskBatches: StaticOperationSchema;
|
|
450
|
+
export declare var DescribeImportTasks: StaticOperationSchema;
|
|
432
451
|
export declare var DescribeIndexPolicies: StaticOperationSchema;
|
|
433
452
|
export declare var DescribeLogGroups: StaticOperationSchema;
|
|
434
453
|
export declare var DescribeLogStreams: StaticOperationSchema;
|
|
@@ -12,6 +12,10 @@ import {
|
|
|
12
12
|
CancelExportTaskCommandInput,
|
|
13
13
|
CancelExportTaskCommandOutput,
|
|
14
14
|
} from "./commands/CancelExportTaskCommand";
|
|
15
|
+
import {
|
|
16
|
+
CancelImportTaskCommandInput,
|
|
17
|
+
CancelImportTaskCommandOutput,
|
|
18
|
+
} from "./commands/CancelImportTaskCommand";
|
|
15
19
|
import {
|
|
16
20
|
CreateDeliveryCommandInput,
|
|
17
21
|
CreateDeliveryCommandOutput,
|
|
@@ -20,6 +24,10 @@ import {
|
|
|
20
24
|
CreateExportTaskCommandInput,
|
|
21
25
|
CreateExportTaskCommandOutput,
|
|
22
26
|
} from "./commands/CreateExportTaskCommand";
|
|
27
|
+
import {
|
|
28
|
+
CreateImportTaskCommandInput,
|
|
29
|
+
CreateImportTaskCommandOutput,
|
|
30
|
+
} from "./commands/CreateImportTaskCommand";
|
|
23
31
|
import {
|
|
24
32
|
CreateLogAnomalyDetectorCommandInput,
|
|
25
33
|
CreateLogAnomalyDetectorCommandOutput,
|
|
@@ -144,6 +152,14 @@ import {
|
|
|
144
152
|
DescribeFieldIndexesCommandInput,
|
|
145
153
|
DescribeFieldIndexesCommandOutput,
|
|
146
154
|
} from "./commands/DescribeFieldIndexesCommand";
|
|
155
|
+
import {
|
|
156
|
+
DescribeImportTaskBatchesCommandInput,
|
|
157
|
+
DescribeImportTaskBatchesCommandOutput,
|
|
158
|
+
} from "./commands/DescribeImportTaskBatchesCommand";
|
|
159
|
+
import {
|
|
160
|
+
DescribeImportTasksCommandInput,
|
|
161
|
+
DescribeImportTasksCommandOutput,
|
|
162
|
+
} from "./commands/DescribeImportTasksCommand";
|
|
147
163
|
import {
|
|
148
164
|
DescribeIndexPoliciesCommandInput,
|
|
149
165
|
DescribeIndexPoliciesCommandOutput,
|
|
@@ -458,6 +474,19 @@ export interface CloudWatchLogs {
|
|
|
458
474
|
options: __HttpHandlerOptions,
|
|
459
475
|
cb: (err: any, data?: CancelExportTaskCommandOutput) => void
|
|
460
476
|
): void;
|
|
477
|
+
cancelImportTask(
|
|
478
|
+
args: CancelImportTaskCommandInput,
|
|
479
|
+
options?: __HttpHandlerOptions
|
|
480
|
+
): Promise<CancelImportTaskCommandOutput>;
|
|
481
|
+
cancelImportTask(
|
|
482
|
+
args: CancelImportTaskCommandInput,
|
|
483
|
+
cb: (err: any, data?: CancelImportTaskCommandOutput) => void
|
|
484
|
+
): void;
|
|
485
|
+
cancelImportTask(
|
|
486
|
+
args: CancelImportTaskCommandInput,
|
|
487
|
+
options: __HttpHandlerOptions,
|
|
488
|
+
cb: (err: any, data?: CancelImportTaskCommandOutput) => void
|
|
489
|
+
): void;
|
|
461
490
|
createDelivery(
|
|
462
491
|
args: CreateDeliveryCommandInput,
|
|
463
492
|
options?: __HttpHandlerOptions
|
|
@@ -484,6 +513,19 @@ export interface CloudWatchLogs {
|
|
|
484
513
|
options: __HttpHandlerOptions,
|
|
485
514
|
cb: (err: any, data?: CreateExportTaskCommandOutput) => void
|
|
486
515
|
): void;
|
|
516
|
+
createImportTask(
|
|
517
|
+
args: CreateImportTaskCommandInput,
|
|
518
|
+
options?: __HttpHandlerOptions
|
|
519
|
+
): Promise<CreateImportTaskCommandOutput>;
|
|
520
|
+
createImportTask(
|
|
521
|
+
args: CreateImportTaskCommandInput,
|
|
522
|
+
cb: (err: any, data?: CreateImportTaskCommandOutput) => void
|
|
523
|
+
): void;
|
|
524
|
+
createImportTask(
|
|
525
|
+
args: CreateImportTaskCommandInput,
|
|
526
|
+
options: __HttpHandlerOptions,
|
|
527
|
+
cb: (err: any, data?: CreateImportTaskCommandOutput) => void
|
|
528
|
+
): void;
|
|
487
529
|
createLogAnomalyDetector(
|
|
488
530
|
args: CreateLogAnomalyDetectorCommandInput,
|
|
489
531
|
options?: __HttpHandlerOptions
|
|
@@ -894,6 +936,33 @@ export interface CloudWatchLogs {
|
|
|
894
936
|
options: __HttpHandlerOptions,
|
|
895
937
|
cb: (err: any, data?: DescribeFieldIndexesCommandOutput) => void
|
|
896
938
|
): void;
|
|
939
|
+
describeImportTaskBatches(
|
|
940
|
+
args: DescribeImportTaskBatchesCommandInput,
|
|
941
|
+
options?: __HttpHandlerOptions
|
|
942
|
+
): Promise<DescribeImportTaskBatchesCommandOutput>;
|
|
943
|
+
describeImportTaskBatches(
|
|
944
|
+
args: DescribeImportTaskBatchesCommandInput,
|
|
945
|
+
cb: (err: any, data?: DescribeImportTaskBatchesCommandOutput) => void
|
|
946
|
+
): void;
|
|
947
|
+
describeImportTaskBatches(
|
|
948
|
+
args: DescribeImportTaskBatchesCommandInput,
|
|
949
|
+
options: __HttpHandlerOptions,
|
|
950
|
+
cb: (err: any, data?: DescribeImportTaskBatchesCommandOutput) => void
|
|
951
|
+
): void;
|
|
952
|
+
describeImportTasks(): Promise<DescribeImportTasksCommandOutput>;
|
|
953
|
+
describeImportTasks(
|
|
954
|
+
args: DescribeImportTasksCommandInput,
|
|
955
|
+
options?: __HttpHandlerOptions
|
|
956
|
+
): Promise<DescribeImportTasksCommandOutput>;
|
|
957
|
+
describeImportTasks(
|
|
958
|
+
args: DescribeImportTasksCommandInput,
|
|
959
|
+
cb: (err: any, data?: DescribeImportTasksCommandOutput) => void
|
|
960
|
+
): void;
|
|
961
|
+
describeImportTasks(
|
|
962
|
+
args: DescribeImportTasksCommandInput,
|
|
963
|
+
options: __HttpHandlerOptions,
|
|
964
|
+
cb: (err: any, data?: DescribeImportTasksCommandOutput) => void
|
|
965
|
+
): void;
|
|
897
966
|
describeIndexPolicies(
|
|
898
967
|
args: DescribeIndexPoliciesCommandInput,
|
|
899
968
|
options?: __HttpHandlerOptions
|
|
@@ -65,6 +65,10 @@ import {
|
|
|
65
65
|
CancelExportTaskCommandInput,
|
|
66
66
|
CancelExportTaskCommandOutput,
|
|
67
67
|
} from "./commands/CancelExportTaskCommand";
|
|
68
|
+
import {
|
|
69
|
+
CancelImportTaskCommandInput,
|
|
70
|
+
CancelImportTaskCommandOutput,
|
|
71
|
+
} from "./commands/CancelImportTaskCommand";
|
|
68
72
|
import {
|
|
69
73
|
CreateDeliveryCommandInput,
|
|
70
74
|
CreateDeliveryCommandOutput,
|
|
@@ -73,6 +77,10 @@ import {
|
|
|
73
77
|
CreateExportTaskCommandInput,
|
|
74
78
|
CreateExportTaskCommandOutput,
|
|
75
79
|
} from "./commands/CreateExportTaskCommand";
|
|
80
|
+
import {
|
|
81
|
+
CreateImportTaskCommandInput,
|
|
82
|
+
CreateImportTaskCommandOutput,
|
|
83
|
+
} from "./commands/CreateImportTaskCommand";
|
|
76
84
|
import {
|
|
77
85
|
CreateLogAnomalyDetectorCommandInput,
|
|
78
86
|
CreateLogAnomalyDetectorCommandOutput,
|
|
@@ -197,6 +205,14 @@ import {
|
|
|
197
205
|
DescribeFieldIndexesCommandInput,
|
|
198
206
|
DescribeFieldIndexesCommandOutput,
|
|
199
207
|
} from "./commands/DescribeFieldIndexesCommand";
|
|
208
|
+
import {
|
|
209
|
+
DescribeImportTaskBatchesCommandInput,
|
|
210
|
+
DescribeImportTaskBatchesCommandOutput,
|
|
211
|
+
} from "./commands/DescribeImportTaskBatchesCommand";
|
|
212
|
+
import {
|
|
213
|
+
DescribeImportTasksCommandInput,
|
|
214
|
+
DescribeImportTasksCommandOutput,
|
|
215
|
+
} from "./commands/DescribeImportTasksCommand";
|
|
200
216
|
import {
|
|
201
217
|
DescribeIndexPoliciesCommandInput,
|
|
202
218
|
DescribeIndexPoliciesCommandOutput,
|
|
@@ -476,8 +492,10 @@ export type ServiceInputTypes =
|
|
|
476
492
|
| AssociateKmsKeyCommandInput
|
|
477
493
|
| AssociateSourceToS3TableIntegrationCommandInput
|
|
478
494
|
| CancelExportTaskCommandInput
|
|
495
|
+
| CancelImportTaskCommandInput
|
|
479
496
|
| CreateDeliveryCommandInput
|
|
480
497
|
| CreateExportTaskCommandInput
|
|
498
|
+
| CreateImportTaskCommandInput
|
|
481
499
|
| CreateLogAnomalyDetectorCommandInput
|
|
482
500
|
| CreateLogGroupCommandInput
|
|
483
501
|
| CreateLogStreamCommandInput
|
|
@@ -509,6 +527,8 @@ export type ServiceInputTypes =
|
|
|
509
527
|
| DescribeDestinationsCommandInput
|
|
510
528
|
| DescribeExportTasksCommandInput
|
|
511
529
|
| DescribeFieldIndexesCommandInput
|
|
530
|
+
| DescribeImportTaskBatchesCommandInput
|
|
531
|
+
| DescribeImportTasksCommandInput
|
|
512
532
|
| DescribeIndexPoliciesCommandInput
|
|
513
533
|
| DescribeLogGroupsCommandInput
|
|
514
534
|
| DescribeLogStreamsCommandInput
|
|
@@ -580,8 +600,10 @@ export type ServiceOutputTypes =
|
|
|
580
600
|
| AssociateKmsKeyCommandOutput
|
|
581
601
|
| AssociateSourceToS3TableIntegrationCommandOutput
|
|
582
602
|
| CancelExportTaskCommandOutput
|
|
603
|
+
| CancelImportTaskCommandOutput
|
|
583
604
|
| CreateDeliveryCommandOutput
|
|
584
605
|
| CreateExportTaskCommandOutput
|
|
606
|
+
| CreateImportTaskCommandOutput
|
|
585
607
|
| CreateLogAnomalyDetectorCommandOutput
|
|
586
608
|
| CreateLogGroupCommandOutput
|
|
587
609
|
| CreateLogStreamCommandOutput
|
|
@@ -613,6 +635,8 @@ export type ServiceOutputTypes =
|
|
|
613
635
|
| DescribeDestinationsCommandOutput
|
|
614
636
|
| DescribeExportTasksCommandOutput
|
|
615
637
|
| DescribeFieldIndexesCommandOutput
|
|
638
|
+
| DescribeImportTaskBatchesCommandOutput
|
|
639
|
+
| DescribeImportTasksCommandOutput
|
|
616
640
|
| DescribeIndexPoliciesCommandOutput
|
|
617
641
|
| DescribeLogGroupsCommandOutput
|
|
618
642
|
| DescribeLogStreamsCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
CancelImportTaskRequest,
|
|
10
|
+
CancelImportTaskResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelImportTaskCommandInput extends CancelImportTaskRequest {}
|
|
15
|
+
export interface CancelImportTaskCommandOutput
|
|
16
|
+
extends CancelImportTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelImportTaskCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelImportTaskCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelImportTaskCommandInput,
|
|
23
|
+
CancelImportTaskCommandOutput,
|
|
24
|
+
CloudWatchLogsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CancelImportTaskCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelImportTaskCommandInput,
|
|
32
|
+
CancelImportTaskCommandOutput,
|
|
33
|
+
CloudWatchLogsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelImportTaskCommand extends CancelImportTaskCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CancelImportTaskRequest;
|
|
43
|
+
output: CancelImportTaskResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CancelImportTaskCommandInput;
|
|
47
|
+
output: CancelImportTaskCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
CreateImportTaskRequest,
|
|
10
|
+
CreateImportTaskResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateImportTaskCommandInput extends CreateImportTaskRequest {}
|
|
15
|
+
export interface CreateImportTaskCommandOutput
|
|
16
|
+
extends CreateImportTaskResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateImportTaskCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateImportTaskCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateImportTaskCommandInput,
|
|
23
|
+
CreateImportTaskCommandOutput,
|
|
24
|
+
CloudWatchLogsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateImportTaskCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateImportTaskCommandInput,
|
|
32
|
+
CreateImportTaskCommandOutput,
|
|
33
|
+
CloudWatchLogsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateImportTaskCommand extends CreateImportTaskCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateImportTaskRequest;
|
|
43
|
+
output: CreateImportTaskResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateImportTaskCommandInput;
|
|
47
|
+
output: CreateImportTaskCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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
|
+
DescribeImportTaskBatchesRequest,
|
|
10
|
+
DescribeImportTaskBatchesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeImportTaskBatchesCommandInput
|
|
15
|
+
extends DescribeImportTaskBatchesRequest {}
|
|
16
|
+
export interface DescribeImportTaskBatchesCommandOutput
|
|
17
|
+
extends DescribeImportTaskBatchesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeImportTaskBatchesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeImportTaskBatchesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeImportTaskBatchesCommandInput,
|
|
24
|
+
DescribeImportTaskBatchesCommandOutput,
|
|
25
|
+
CloudWatchLogsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeImportTaskBatchesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeImportTaskBatchesCommandInput,
|
|
33
|
+
DescribeImportTaskBatchesCommandOutput,
|
|
34
|
+
CloudWatchLogsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeImportTaskBatchesCommand extends DescribeImportTaskBatchesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeImportTaskBatchesRequest;
|
|
44
|
+
output: DescribeImportTaskBatchesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeImportTaskBatchesCommandInput;
|
|
48
|
+
output: DescribeImportTaskBatchesCommandOutput;
|
|
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
|
+
DescribeImportTasksRequest,
|
|
10
|
+
DescribeImportTasksResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeImportTasksCommandInput
|
|
15
|
+
extends DescribeImportTasksRequest {}
|
|
16
|
+
export interface DescribeImportTasksCommandOutput
|
|
17
|
+
extends DescribeImportTasksResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeImportTasksCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeImportTasksCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeImportTasksCommandInput,
|
|
24
|
+
DescribeImportTasksCommandOutput,
|
|
25
|
+
CloudWatchLogsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [DescribeImportTasksCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeImportTasksCommandInput,
|
|
33
|
+
DescribeImportTasksCommandOutput,
|
|
34
|
+
CloudWatchLogsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeImportTasksCommand extends DescribeImportTasksCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeImportTasksRequest;
|
|
44
|
+
output: DescribeImportTasksResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeImportTasksCommandInput;
|
|
48
|
+
output: DescribeImportTasksCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|
|
@@ -43,6 +43,13 @@ export declare const EvaluationFrequency: {
|
|
|
43
43
|
};
|
|
44
44
|
export type EvaluationFrequency =
|
|
45
45
|
(typeof EvaluationFrequency)[keyof typeof EvaluationFrequency];
|
|
46
|
+
export declare const ImportStatus: {
|
|
47
|
+
readonly CANCELLED: "CANCELLED";
|
|
48
|
+
readonly COMPLETED: "COMPLETED";
|
|
49
|
+
readonly FAILED: "FAILED";
|
|
50
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
51
|
+
};
|
|
52
|
+
export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
|
|
46
53
|
export declare const OutputFormat: {
|
|
47
54
|
readonly JSON: "json";
|
|
48
55
|
readonly PARQUET: "parquet";
|
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
ExecutionStatus,
|
|
11
11
|
ExportTaskStatusCode,
|
|
12
12
|
FlattenedElement,
|
|
13
|
+
ImportStatus,
|
|
13
14
|
IndexSource,
|
|
14
15
|
IndexType,
|
|
15
16
|
InheritedProperty,
|
|
@@ -133,6 +134,19 @@ export interface AssociateSourceToS3TableIntegrationResponse {
|
|
|
133
134
|
export interface CancelExportTaskRequest {
|
|
134
135
|
taskId: string | undefined;
|
|
135
136
|
}
|
|
137
|
+
export interface CancelImportTaskRequest {
|
|
138
|
+
importId: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface ImportStatistics {
|
|
141
|
+
bytesImported?: number | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface CancelImportTaskResponse {
|
|
144
|
+
importId?: string | undefined;
|
|
145
|
+
importStatistics?: ImportStatistics | undefined;
|
|
146
|
+
importStatus?: ImportStatus | undefined;
|
|
147
|
+
creationTime?: number | undefined;
|
|
148
|
+
lastUpdatedTime?: number | undefined;
|
|
149
|
+
}
|
|
136
150
|
export interface S3DeliveryConfiguration {
|
|
137
151
|
suffixPath?: string | undefined;
|
|
138
152
|
enableHiveCompatiblePath?: boolean | undefined;
|
|
@@ -198,6 +212,20 @@ export interface CreateExportTaskRequest {
|
|
|
198
212
|
export interface CreateExportTaskResponse {
|
|
199
213
|
taskId?: string | undefined;
|
|
200
214
|
}
|
|
215
|
+
export interface ImportFilter {
|
|
216
|
+
startEventTime?: number | undefined;
|
|
217
|
+
endEventTime?: number | undefined;
|
|
218
|
+
}
|
|
219
|
+
export interface CreateImportTaskRequest {
|
|
220
|
+
importSourceArn: string | undefined;
|
|
221
|
+
importRoleArn: string | undefined;
|
|
222
|
+
importFilter?: ImportFilter | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface CreateImportTaskResponse {
|
|
225
|
+
importId?: string | undefined;
|
|
226
|
+
importDestinationArn?: string | undefined;
|
|
227
|
+
creationTime?: number | undefined;
|
|
228
|
+
}
|
|
201
229
|
export interface CreateLogAnomalyDetectorRequest {
|
|
202
230
|
logGroupArnList: string[] | undefined;
|
|
203
231
|
detectorName?: string | undefined;
|
|
@@ -469,6 +497,45 @@ export interface DescribeFieldIndexesResponse {
|
|
|
469
497
|
fieldIndexes?: FieldIndex[] | undefined;
|
|
470
498
|
nextToken?: string | undefined;
|
|
471
499
|
}
|
|
500
|
+
export interface DescribeImportTaskBatchesRequest {
|
|
501
|
+
importId: string | undefined;
|
|
502
|
+
batchImportStatus?: ImportStatus[] | undefined;
|
|
503
|
+
limit?: number | undefined;
|
|
504
|
+
nextToken?: string | undefined;
|
|
505
|
+
}
|
|
506
|
+
export interface ImportBatch {
|
|
507
|
+
batchId: string | undefined;
|
|
508
|
+
status: ImportStatus | undefined;
|
|
509
|
+
errorMessage?: string | undefined;
|
|
510
|
+
}
|
|
511
|
+
export interface DescribeImportTaskBatchesResponse {
|
|
512
|
+
importSourceArn?: string | undefined;
|
|
513
|
+
importId?: string | undefined;
|
|
514
|
+
importBatches?: ImportBatch[] | undefined;
|
|
515
|
+
nextToken?: string | undefined;
|
|
516
|
+
}
|
|
517
|
+
export interface DescribeImportTasksRequest {
|
|
518
|
+
importId?: string | undefined;
|
|
519
|
+
importStatus?: ImportStatus | undefined;
|
|
520
|
+
importSourceArn?: string | undefined;
|
|
521
|
+
limit?: number | undefined;
|
|
522
|
+
nextToken?: string | undefined;
|
|
523
|
+
}
|
|
524
|
+
export interface Import {
|
|
525
|
+
importId?: string | undefined;
|
|
526
|
+
importSourceArn?: string | undefined;
|
|
527
|
+
importStatus?: ImportStatus | undefined;
|
|
528
|
+
importDestinationArn?: string | undefined;
|
|
529
|
+
importStatistics?: ImportStatistics | undefined;
|
|
530
|
+
importFilter?: ImportFilter | undefined;
|
|
531
|
+
creationTime?: number | undefined;
|
|
532
|
+
lastUpdatedTime?: number | undefined;
|
|
533
|
+
errorMessage?: string | undefined;
|
|
534
|
+
}
|
|
535
|
+
export interface DescribeImportTasksResponse {
|
|
536
|
+
imports?: Import[] | undefined;
|
|
537
|
+
nextToken?: string | undefined;
|
|
538
|
+
}
|
|
472
539
|
export interface DescribeIndexPoliciesRequest {
|
|
473
540
|
logGroupIdentifiers: string[] | undefined;
|
|
474
541
|
nextToken?: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAggregateLogGroupSummariesCommandInput,
|
|
4
|
+
ListAggregateLogGroupSummariesCommandOutput,
|
|
5
|
+
} from "../commands/ListAggregateLogGroupSummariesCommand";
|
|
6
|
+
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListAggregateLogGroupSummaries: (
|
|
8
|
+
config: CloudWatchLogsPaginationConfiguration,
|
|
9
|
+
input: ListAggregateLogGroupSummariesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAggregateLogGroupSummariesCommandOutput>;
|
|
@@ -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";
|
|
@@ -15,6 +15,8 @@ export declare var AssociateKmsKeyRequest: StaticStructureSchema;
|
|
|
15
15
|
export declare var AssociateSourceToS3TableIntegrationRequest: StaticStructureSchema;
|
|
16
16
|
export declare var AssociateSourceToS3TableIntegrationResponse: StaticStructureSchema;
|
|
17
17
|
export declare var CancelExportTaskRequest: StaticStructureSchema;
|
|
18
|
+
export declare var CancelImportTaskRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CancelImportTaskResponse: StaticStructureSchema;
|
|
18
20
|
export declare var ConfigurationTemplate: StaticStructureSchema;
|
|
19
21
|
export declare var ConfigurationTemplateDeliveryConfigValues: StaticStructureSchema;
|
|
20
22
|
export declare var ConflictException: StaticErrorSchema;
|
|
@@ -24,6 +26,8 @@ export declare var CreateDeliveryRequest: StaticStructureSchema;
|
|
|
24
26
|
export declare var CreateDeliveryResponse: StaticStructureSchema;
|
|
25
27
|
export declare var CreateExportTaskRequest: StaticStructureSchema;
|
|
26
28
|
export declare var CreateExportTaskResponse: StaticStructureSchema;
|
|
29
|
+
export declare var CreateImportTaskRequest: StaticStructureSchema;
|
|
30
|
+
export declare var CreateImportTaskResponse: StaticStructureSchema;
|
|
27
31
|
export declare var CreateLogAnomalyDetectorRequest: StaticStructureSchema;
|
|
28
32
|
export declare var CreateLogAnomalyDetectorResponse: StaticStructureSchema;
|
|
29
33
|
export declare var CreateLogGroupRequest: StaticStructureSchema;
|
|
@@ -79,6 +83,10 @@ export declare var DescribeExportTasksRequest: StaticStructureSchema;
|
|
|
79
83
|
export declare var DescribeExportTasksResponse: StaticStructureSchema;
|
|
80
84
|
export declare var DescribeFieldIndexesRequest: StaticStructureSchema;
|
|
81
85
|
export declare var DescribeFieldIndexesResponse: StaticStructureSchema;
|
|
86
|
+
export declare var DescribeImportTaskBatchesRequest: StaticStructureSchema;
|
|
87
|
+
export declare var DescribeImportTaskBatchesResponse: StaticStructureSchema;
|
|
88
|
+
export declare var DescribeImportTasksRequest: StaticStructureSchema;
|
|
89
|
+
export declare var DescribeImportTasksResponse: StaticStructureSchema;
|
|
82
90
|
export declare var DescribeIndexPoliciesRequest: StaticStructureSchema;
|
|
83
91
|
export declare var DescribeIndexPoliciesResponse: StaticStructureSchema;
|
|
84
92
|
export declare var DescribeLogGroupsRequest: StaticStructureSchema;
|
|
@@ -143,6 +151,10 @@ export declare var GetTransformerRequest: StaticStructureSchema;
|
|
|
143
151
|
export declare var GetTransformerResponse: StaticStructureSchema;
|
|
144
152
|
export declare var Grok: StaticStructureSchema;
|
|
145
153
|
export declare var GroupingIdentifier: StaticStructureSchema;
|
|
154
|
+
export declare var Import: StaticStructureSchema;
|
|
155
|
+
export declare var ImportBatch: StaticStructureSchema;
|
|
156
|
+
export declare var ImportFilter: StaticStructureSchema;
|
|
157
|
+
export declare var ImportStatistics: StaticStructureSchema;
|
|
146
158
|
export declare var IndexPolicy: StaticStructureSchema;
|
|
147
159
|
export declare var InputLogEvent: StaticStructureSchema;
|
|
148
160
|
export declare var IntegrationSummary: StaticStructureSchema;
|
|
@@ -334,6 +346,9 @@ export declare var FieldIndexes: StaticListSchema;
|
|
|
334
346
|
export declare var FieldIndexNames: number;
|
|
335
347
|
export declare var FilteredLogEvents: StaticListSchema;
|
|
336
348
|
export declare var GroupingIdentifiers: StaticListSchema;
|
|
349
|
+
export declare var ImportBatchList: StaticListSchema;
|
|
350
|
+
export declare var ImportList: StaticListSchema;
|
|
351
|
+
export declare var ImportStatusList: number;
|
|
337
352
|
export declare var IndexPolicies: StaticListSchema;
|
|
338
353
|
export declare var InheritedProperties: number;
|
|
339
354
|
export declare var InputLogEvents: StaticListSchema;
|
|
@@ -401,8 +416,10 @@ export declare var StartLiveTailResponseStream: StaticStructureSchema;
|
|
|
401
416
|
export declare var AssociateKmsKey: StaticOperationSchema;
|
|
402
417
|
export declare var AssociateSourceToS3TableIntegration: StaticOperationSchema;
|
|
403
418
|
export declare var CancelExportTask: StaticOperationSchema;
|
|
419
|
+
export declare var CancelImportTask: StaticOperationSchema;
|
|
404
420
|
export declare var CreateDelivery: StaticOperationSchema;
|
|
405
421
|
export declare var CreateExportTask: StaticOperationSchema;
|
|
422
|
+
export declare var CreateImportTask: StaticOperationSchema;
|
|
406
423
|
export declare var CreateLogAnomalyDetector: StaticOperationSchema;
|
|
407
424
|
export declare var CreateLogGroup: StaticOperationSchema;
|
|
408
425
|
export declare var CreateLogStream: StaticOperationSchema;
|
|
@@ -434,6 +451,8 @@ export declare var DescribeDeliverySources: StaticOperationSchema;
|
|
|
434
451
|
export declare var DescribeDestinations: StaticOperationSchema;
|
|
435
452
|
export declare var DescribeExportTasks: StaticOperationSchema;
|
|
436
453
|
export declare var DescribeFieldIndexes: StaticOperationSchema;
|
|
454
|
+
export declare var DescribeImportTaskBatches: StaticOperationSchema;
|
|
455
|
+
export declare var DescribeImportTasks: StaticOperationSchema;
|
|
437
456
|
export declare var DescribeIndexPolicies: StaticOperationSchema;
|
|
438
457
|
export declare var DescribeLogGroups: StaticOperationSchema;
|
|
439
458
|
export declare var DescribeLogStreams: StaticOperationSchema;
|