@aws-sdk/client-cloudwatch-logs 3.1019.0 → 3.1021.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 +35 -0
- package/dist-cjs/index.js +70 -0
- package/dist-cjs/schemas/schemas_0.js +110 -16
- package/dist-es/CloudWatchLogs.js +14 -4
- package/dist-es/commands/CreateLookupTableCommand.js +16 -0
- package/dist-es/commands/DeleteLookupTableCommand.js +16 -0
- package/dist-es/commands/DescribeLookupTablesCommand.js +16 -0
- package/dist-es/commands/GetLookupTableCommand.js +16 -0
- package/dist-es/commands/UpdateLookupTableCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/schemas/schemas_0.js +101 -7
- package/dist-types/CloudWatchLogs.d.ts +144 -108
- package/dist-types/CloudWatchLogsClient.d.ts +118 -113
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/commands/CreateLookupTableCommand.d.ts +103 -0
- package/dist-types/commands/DeleteLookupTableCommand.d.ts +86 -0
- package/dist-types/commands/DescribeLookupTablesCommand.d.ts +103 -0
- package/dist-types/commands/GetLogFieldsCommand.d.ts +2 -1
- package/dist-types/commands/GetLookupTableCommand.d.ts +92 -0
- package/dist-types/commands/UpdateLookupTableCommand.d.ts +97 -0
- package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +216 -201
- package/dist-types/models/models_1.d.ts +234 -0
- package/dist-types/pagination/DescribeConfigurationTemplatesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliveriesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliveryDestinationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDeliverySourcesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDestinationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLogGroupsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLogStreamsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeMetricFiltersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeSubscriptionFiltersPaginator.d.ts +1 -1
- package/dist-types/pagination/FilterLogEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetLogEventsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetScheduledQueryHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAggregateLogGroupSummariesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAnomaliesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLogAnomalyDetectorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLogGroupsForQueryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +15 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +86 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +32 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +49 -45
- package/dist-types/ts3.4/models/models_1.d.ts +53 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
- package/package.json +15 -15
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeDeliveriesCommandInput, DescribeDeliveriesCommandOutput } from "../commands/DescribeDeliveriesCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeDeliveryDestinationsCommandInput, DescribeDeliveryDestinationsCommandOutput } from "../commands/DescribeDeliveryDestinationsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeDeliverySourcesCommandInput, DescribeDeliverySourcesCommandOutput } from "../commands/DescribeDeliverySourcesCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeDestinationsCommandInput, DescribeDestinationsCommandOutput } from "../commands/DescribeDestinationsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeLogGroupsCommandInput, DescribeLogGroupsCommandOutput } from "../commands/DescribeLogGroupsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeLogStreamsCommandInput, DescribeLogStreamsCommandOutput } from "../commands/DescribeLogStreamsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeMetricFiltersCommandInput, DescribeMetricFiltersCommandOutput } from "../commands/DescribeMetricFiltersCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { DescribeSubscriptionFiltersCommandInput, DescribeSubscriptionFiltersCommandOutput } from "../commands/DescribeSubscriptionFiltersCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { FilterLogEventsCommandInput, FilterLogEventsCommandOutput } from "../commands/FilterLogEventsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { GetLogEventsCommandInput, GetLogEventsCommandOutput } from "../commands/GetLogEventsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { GetScheduledQueryHistoryCommandInput, GetScheduledQueryHistoryCommandOutput } from "../commands/GetScheduledQueryHistoryCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAggregateLogGroupSummariesCommandInput, ListAggregateLogGroupSummariesCommandOutput } from "../commands/ListAggregateLogGroupSummariesCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAnomaliesCommandInput, ListAnomaliesCommandOutput } from "../commands/ListAnomaliesCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListLogAnomalyDetectorsCommandInput, ListLogAnomalyDetectorsCommandOutput } from "../commands/ListLogAnomalyDetectorsCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListLogGroupsForQueryCommandInput, ListLogGroupsForQueryCommandOutput } from "../commands/ListLogGroupsForQueryCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListScheduledQueriesCommandInput, ListScheduledQueriesCommandOutput } from "../commands/ListScheduledQueriesCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListSourcesForS3TableIntegrationCommandInput, ListSourcesForS3TableIntegrationCommandOutput } from "../commands/ListSourcesForS3TableIntegrationCommand";
|
|
3
|
-
import { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { CloudWatchLogsPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -54,6 +54,8 @@ export declare var CreateLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
|
54
54
|
export declare var CreateLogAnomalyDetectorResponse$: StaticStructureSchema;
|
|
55
55
|
export declare var CreateLogGroupRequest$: StaticStructureSchema;
|
|
56
56
|
export declare var CreateLogStreamRequest$: StaticStructureSchema;
|
|
57
|
+
export declare var CreateLookupTableRequest$: StaticStructureSchema;
|
|
58
|
+
export declare var CreateLookupTableResponse$: StaticStructureSchema;
|
|
57
59
|
export declare var CreateScheduledQueryRequest$: StaticStructureSchema;
|
|
58
60
|
export declare var CreateScheduledQueryResponse$: StaticStructureSchema;
|
|
59
61
|
export declare var CSV$: StaticStructureSchema;
|
|
@@ -75,6 +77,7 @@ export declare var DeleteKeys$: StaticStructureSchema;
|
|
|
75
77
|
export declare var DeleteLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
76
78
|
export declare var DeleteLogGroupRequest$: StaticStructureSchema;
|
|
77
79
|
export declare var DeleteLogStreamRequest$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteLookupTableRequest$: StaticStructureSchema;
|
|
78
81
|
export declare var DeleteMetricFilterRequest$: StaticStructureSchema;
|
|
79
82
|
export declare var DeleteQueryDefinitionRequest$: StaticStructureSchema;
|
|
80
83
|
export declare var DeleteQueryDefinitionResponse$: StaticStructureSchema;
|
|
@@ -114,6 +117,8 @@ export declare var DescribeLogGroupsRequest$: StaticStructureSchema;
|
|
|
114
117
|
export declare var DescribeLogGroupsResponse$: StaticStructureSchema;
|
|
115
118
|
export declare var DescribeLogStreamsRequest$: StaticStructureSchema;
|
|
116
119
|
export declare var DescribeLogStreamsResponse$: StaticStructureSchema;
|
|
120
|
+
export declare var DescribeLookupTablesRequest$: StaticStructureSchema;
|
|
121
|
+
export declare var DescribeLookupTablesResponse$: StaticStructureSchema;
|
|
117
122
|
export declare var DescribeMetricFiltersRequest$: StaticStructureSchema;
|
|
118
123
|
export declare var DescribeMetricFiltersResponse$: StaticStructureSchema;
|
|
119
124
|
export declare var DescribeQueriesRequest$: StaticStructureSchema;
|
|
@@ -162,6 +167,8 @@ export declare var GetLogObjectRequest$: StaticStructureSchema;
|
|
|
162
167
|
export declare var GetLogObjectResponse$: StaticStructureSchema;
|
|
163
168
|
export declare var GetLogRecordRequest$: StaticStructureSchema;
|
|
164
169
|
export declare var GetLogRecordResponse$: StaticStructureSchema;
|
|
170
|
+
export declare var GetLookupTableRequest$: StaticStructureSchema;
|
|
171
|
+
export declare var GetLookupTableResponse$: StaticStructureSchema;
|
|
165
172
|
export declare var GetQueryResultsRequest$: StaticStructureSchema;
|
|
166
173
|
export declare var GetQueryResultsResponse$: StaticStructureSchema;
|
|
167
174
|
export declare var GetScheduledQueryHistoryRequest$: StaticStructureSchema;
|
|
@@ -211,6 +218,7 @@ export declare var LogGroup$: StaticStructureSchema;
|
|
|
211
218
|
export declare var LogGroupField$: StaticStructureSchema;
|
|
212
219
|
export declare var LogGroupSummary$: StaticStructureSchema;
|
|
213
220
|
export declare var LogStream$: StaticStructureSchema;
|
|
221
|
+
export declare var LookupTable$: StaticStructureSchema;
|
|
214
222
|
export declare var LowerCaseString$: StaticStructureSchema;
|
|
215
223
|
export declare var MetricFilter$: StaticStructureSchema;
|
|
216
224
|
export declare var MetricFilterMatchRecord$: StaticStructureSchema;
|
|
@@ -317,6 +325,8 @@ export declare var UpdateAnomalyRequest$: StaticStructureSchema;
|
|
|
317
325
|
export declare var UpdateDeliveryConfigurationRequest$: StaticStructureSchema;
|
|
318
326
|
export declare var UpdateDeliveryConfigurationResponse$: StaticStructureSchema;
|
|
319
327
|
export declare var UpdateLogAnomalyDetectorRequest$: StaticStructureSchema;
|
|
328
|
+
export declare var UpdateLookupTableRequest$: StaticStructureSchema;
|
|
329
|
+
export declare var UpdateLookupTableResponse$: StaticStructureSchema;
|
|
320
330
|
export declare var UpdateScheduledQueryRequest$: StaticStructureSchema;
|
|
321
331
|
export declare var UpdateScheduledQueryResponse$: StaticStructureSchema;
|
|
322
332
|
export declare var UpperCaseString$: StaticStructureSchema;
|
|
@@ -334,6 +344,7 @@ export declare var CreateImportTask$: StaticOperationSchema;
|
|
|
334
344
|
export declare var CreateLogAnomalyDetector$: StaticOperationSchema;
|
|
335
345
|
export declare var CreateLogGroup$: StaticOperationSchema;
|
|
336
346
|
export declare var CreateLogStream$: StaticOperationSchema;
|
|
347
|
+
export declare var CreateLookupTable$: StaticOperationSchema;
|
|
337
348
|
export declare var CreateScheduledQuery$: StaticOperationSchema;
|
|
338
349
|
export declare var DeleteAccountPolicy$: StaticOperationSchema;
|
|
339
350
|
export declare var DeleteDataProtectionPolicy$: StaticOperationSchema;
|
|
@@ -347,6 +358,7 @@ export declare var DeleteIntegration$: StaticOperationSchema;
|
|
|
347
358
|
export declare var DeleteLogAnomalyDetector$: StaticOperationSchema;
|
|
348
359
|
export declare var DeleteLogGroup$: StaticOperationSchema;
|
|
349
360
|
export declare var DeleteLogStream$: StaticOperationSchema;
|
|
361
|
+
export declare var DeleteLookupTable$: StaticOperationSchema;
|
|
350
362
|
export declare var DeleteMetricFilter$: StaticOperationSchema;
|
|
351
363
|
export declare var DeleteQueryDefinition$: StaticOperationSchema;
|
|
352
364
|
export declare var DeleteResourcePolicy$: StaticOperationSchema;
|
|
@@ -367,6 +379,7 @@ export declare var DescribeImportTasks$: StaticOperationSchema;
|
|
|
367
379
|
export declare var DescribeIndexPolicies$: StaticOperationSchema;
|
|
368
380
|
export declare var DescribeLogGroups$: StaticOperationSchema;
|
|
369
381
|
export declare var DescribeLogStreams$: StaticOperationSchema;
|
|
382
|
+
export declare var DescribeLookupTables$: StaticOperationSchema;
|
|
370
383
|
export declare var DescribeMetricFilters$: StaticOperationSchema;
|
|
371
384
|
export declare var DescribeQueries$: StaticOperationSchema;
|
|
372
385
|
export declare var DescribeQueryDefinitions$: StaticOperationSchema;
|
|
@@ -387,6 +400,7 @@ export declare var GetLogFields$: StaticOperationSchema;
|
|
|
387
400
|
export declare var GetLogGroupFields$: StaticOperationSchema;
|
|
388
401
|
export declare var GetLogObject$: StaticOperationSchema;
|
|
389
402
|
export declare var GetLogRecord$: StaticOperationSchema;
|
|
403
|
+
export declare var GetLookupTable$: StaticOperationSchema;
|
|
390
404
|
export declare var GetQueryResults$: StaticOperationSchema;
|
|
391
405
|
export declare var GetScheduledQuery$: StaticOperationSchema;
|
|
392
406
|
export declare var GetScheduledQueryHistory$: StaticOperationSchema;
|
|
@@ -431,4 +445,5 @@ export declare var UntagResource$: StaticOperationSchema;
|
|
|
431
445
|
export declare var UpdateAnomaly$: StaticOperationSchema;
|
|
432
446
|
export declare var UpdateDeliveryConfiguration$: StaticOperationSchema;
|
|
433
447
|
export declare var UpdateLogAnomalyDetector$: StaticOperationSchema;
|
|
448
|
+
export declare var UpdateLookupTable$: StaticOperationSchema;
|
|
434
449
|
export declare var UpdateScheduledQuery$: StaticOperationSchema;
|
|
@@ -44,6 +44,10 @@ import {
|
|
|
44
44
|
CreateLogStreamCommandInput,
|
|
45
45
|
CreateLogStreamCommandOutput,
|
|
46
46
|
} from "./commands/CreateLogStreamCommand";
|
|
47
|
+
import {
|
|
48
|
+
CreateLookupTableCommandInput,
|
|
49
|
+
CreateLookupTableCommandOutput,
|
|
50
|
+
} from "./commands/CreateLookupTableCommand";
|
|
47
51
|
import {
|
|
48
52
|
CreateScheduledQueryCommandInput,
|
|
49
53
|
CreateScheduledQueryCommandOutput,
|
|
@@ -96,6 +100,10 @@ import {
|
|
|
96
100
|
DeleteLogStreamCommandInput,
|
|
97
101
|
DeleteLogStreamCommandOutput,
|
|
98
102
|
} from "./commands/DeleteLogStreamCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeleteLookupTableCommandInput,
|
|
105
|
+
DeleteLookupTableCommandOutput,
|
|
106
|
+
} from "./commands/DeleteLookupTableCommand";
|
|
99
107
|
import {
|
|
100
108
|
DeleteMetricFilterCommandInput,
|
|
101
109
|
DeleteMetricFilterCommandOutput,
|
|
@@ -176,6 +184,10 @@ import {
|
|
|
176
184
|
DescribeLogStreamsCommandInput,
|
|
177
185
|
DescribeLogStreamsCommandOutput,
|
|
178
186
|
} from "./commands/DescribeLogStreamsCommand";
|
|
187
|
+
import {
|
|
188
|
+
DescribeLookupTablesCommandInput,
|
|
189
|
+
DescribeLookupTablesCommandOutput,
|
|
190
|
+
} from "./commands/DescribeLookupTablesCommand";
|
|
179
191
|
import {
|
|
180
192
|
DescribeMetricFiltersCommandInput,
|
|
181
193
|
DescribeMetricFiltersCommandOutput,
|
|
@@ -256,6 +268,10 @@ import {
|
|
|
256
268
|
GetLogRecordCommandInput,
|
|
257
269
|
GetLogRecordCommandOutput,
|
|
258
270
|
} from "./commands/GetLogRecordCommand";
|
|
271
|
+
import {
|
|
272
|
+
GetLookupTableCommandInput,
|
|
273
|
+
GetLookupTableCommandOutput,
|
|
274
|
+
} from "./commands/GetLookupTableCommand";
|
|
259
275
|
import {
|
|
260
276
|
GetQueryResultsCommandInput,
|
|
261
277
|
GetQueryResultsCommandOutput,
|
|
@@ -432,6 +448,10 @@ import {
|
|
|
432
448
|
UpdateLogAnomalyDetectorCommandInput,
|
|
433
449
|
UpdateLogAnomalyDetectorCommandOutput,
|
|
434
450
|
} from "./commands/UpdateLogAnomalyDetectorCommand";
|
|
451
|
+
import {
|
|
452
|
+
UpdateLookupTableCommandInput,
|
|
453
|
+
UpdateLookupTableCommandOutput,
|
|
454
|
+
} from "./commands/UpdateLookupTableCommand";
|
|
435
455
|
import {
|
|
436
456
|
UpdateScheduledQueryCommandInput,
|
|
437
457
|
UpdateScheduledQueryCommandOutput,
|
|
@@ -573,6 +593,19 @@ export interface CloudWatchLogs {
|
|
|
573
593
|
options: __HttpHandlerOptions,
|
|
574
594
|
cb: (err: any, data?: CreateLogStreamCommandOutput) => void
|
|
575
595
|
): void;
|
|
596
|
+
createLookupTable(
|
|
597
|
+
args: CreateLookupTableCommandInput,
|
|
598
|
+
options?: __HttpHandlerOptions
|
|
599
|
+
): Promise<CreateLookupTableCommandOutput>;
|
|
600
|
+
createLookupTable(
|
|
601
|
+
args: CreateLookupTableCommandInput,
|
|
602
|
+
cb: (err: any, data?: CreateLookupTableCommandOutput) => void
|
|
603
|
+
): void;
|
|
604
|
+
createLookupTable(
|
|
605
|
+
args: CreateLookupTableCommandInput,
|
|
606
|
+
options: __HttpHandlerOptions,
|
|
607
|
+
cb: (err: any, data?: CreateLookupTableCommandOutput) => void
|
|
608
|
+
): void;
|
|
576
609
|
createScheduledQuery(
|
|
577
610
|
args: CreateScheduledQueryCommandInput,
|
|
578
611
|
options?: __HttpHandlerOptions
|
|
@@ -742,6 +775,19 @@ export interface CloudWatchLogs {
|
|
|
742
775
|
options: __HttpHandlerOptions,
|
|
743
776
|
cb: (err: any, data?: DeleteLogStreamCommandOutput) => void
|
|
744
777
|
): void;
|
|
778
|
+
deleteLookupTable(
|
|
779
|
+
args: DeleteLookupTableCommandInput,
|
|
780
|
+
options?: __HttpHandlerOptions
|
|
781
|
+
): Promise<DeleteLookupTableCommandOutput>;
|
|
782
|
+
deleteLookupTable(
|
|
783
|
+
args: DeleteLookupTableCommandInput,
|
|
784
|
+
cb: (err: any, data?: DeleteLookupTableCommandOutput) => void
|
|
785
|
+
): void;
|
|
786
|
+
deleteLookupTable(
|
|
787
|
+
args: DeleteLookupTableCommandInput,
|
|
788
|
+
options: __HttpHandlerOptions,
|
|
789
|
+
cb: (err: any, data?: DeleteLookupTableCommandOutput) => void
|
|
790
|
+
): void;
|
|
745
791
|
deleteMetricFilter(
|
|
746
792
|
args: DeleteMetricFilterCommandInput,
|
|
747
793
|
options?: __HttpHandlerOptions
|
|
@@ -1012,6 +1058,20 @@ export interface CloudWatchLogs {
|
|
|
1012
1058
|
options: __HttpHandlerOptions,
|
|
1013
1059
|
cb: (err: any, data?: DescribeLogStreamsCommandOutput) => void
|
|
1014
1060
|
): void;
|
|
1061
|
+
describeLookupTables(): Promise<DescribeLookupTablesCommandOutput>;
|
|
1062
|
+
describeLookupTables(
|
|
1063
|
+
args: DescribeLookupTablesCommandInput,
|
|
1064
|
+
options?: __HttpHandlerOptions
|
|
1065
|
+
): Promise<DescribeLookupTablesCommandOutput>;
|
|
1066
|
+
describeLookupTables(
|
|
1067
|
+
args: DescribeLookupTablesCommandInput,
|
|
1068
|
+
cb: (err: any, data?: DescribeLookupTablesCommandOutput) => void
|
|
1069
|
+
): void;
|
|
1070
|
+
describeLookupTables(
|
|
1071
|
+
args: DescribeLookupTablesCommandInput,
|
|
1072
|
+
options: __HttpHandlerOptions,
|
|
1073
|
+
cb: (err: any, data?: DescribeLookupTablesCommandOutput) => void
|
|
1074
|
+
): void;
|
|
1015
1075
|
describeMetricFilters(): Promise<DescribeMetricFiltersCommandOutput>;
|
|
1016
1076
|
describeMetricFilters(
|
|
1017
1077
|
args: DescribeMetricFiltersCommandInput,
|
|
@@ -1285,6 +1345,19 @@ export interface CloudWatchLogs {
|
|
|
1285
1345
|
options: __HttpHandlerOptions,
|
|
1286
1346
|
cb: (err: any, data?: GetLogRecordCommandOutput) => void
|
|
1287
1347
|
): void;
|
|
1348
|
+
getLookupTable(
|
|
1349
|
+
args: GetLookupTableCommandInput,
|
|
1350
|
+
options?: __HttpHandlerOptions
|
|
1351
|
+
): Promise<GetLookupTableCommandOutput>;
|
|
1352
|
+
getLookupTable(
|
|
1353
|
+
args: GetLookupTableCommandInput,
|
|
1354
|
+
cb: (err: any, data?: GetLookupTableCommandOutput) => void
|
|
1355
|
+
): void;
|
|
1356
|
+
getLookupTable(
|
|
1357
|
+
args: GetLookupTableCommandInput,
|
|
1358
|
+
options: __HttpHandlerOptions,
|
|
1359
|
+
cb: (err: any, data?: GetLookupTableCommandOutput) => void
|
|
1360
|
+
): void;
|
|
1288
1361
|
getQueryResults(
|
|
1289
1362
|
args: GetQueryResultsCommandInput,
|
|
1290
1363
|
options?: __HttpHandlerOptions
|
|
@@ -1863,6 +1936,19 @@ export interface CloudWatchLogs {
|
|
|
1863
1936
|
options: __HttpHandlerOptions,
|
|
1864
1937
|
cb: (err: any, data?: UpdateLogAnomalyDetectorCommandOutput) => void
|
|
1865
1938
|
): void;
|
|
1939
|
+
updateLookupTable(
|
|
1940
|
+
args: UpdateLookupTableCommandInput,
|
|
1941
|
+
options?: __HttpHandlerOptions
|
|
1942
|
+
): Promise<UpdateLookupTableCommandOutput>;
|
|
1943
|
+
updateLookupTable(
|
|
1944
|
+
args: UpdateLookupTableCommandInput,
|
|
1945
|
+
cb: (err: any, data?: UpdateLookupTableCommandOutput) => void
|
|
1946
|
+
): void;
|
|
1947
|
+
updateLookupTable(
|
|
1948
|
+
args: UpdateLookupTableCommandInput,
|
|
1949
|
+
options: __HttpHandlerOptions,
|
|
1950
|
+
cb: (err: any, data?: UpdateLookupTableCommandOutput) => void
|
|
1951
|
+
): void;
|
|
1866
1952
|
updateScheduledQuery(
|
|
1867
1953
|
args: UpdateScheduledQueryCommandInput,
|
|
1868
1954
|
options?: __HttpHandlerOptions
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
Client as __Client,
|
|
31
31
|
} from "@smithy/smithy-client";
|
|
32
32
|
import {
|
|
33
|
+
AwsCredentialIdentityProvider,
|
|
33
34
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
35
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
35
36
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -42,8 +43,6 @@ import {
|
|
|
42
43
|
Provider as __Provider,
|
|
43
44
|
StreamCollector as __StreamCollector,
|
|
44
45
|
UrlParser as __UrlParser,
|
|
45
|
-
AwsCredentialIdentityProvider,
|
|
46
|
-
Provider,
|
|
47
46
|
UserAgent as __UserAgent,
|
|
48
47
|
} from "@smithy/types";
|
|
49
48
|
import {
|
|
@@ -90,6 +89,10 @@ import {
|
|
|
90
89
|
CreateLogStreamCommandInput,
|
|
91
90
|
CreateLogStreamCommandOutput,
|
|
92
91
|
} from "./commands/CreateLogStreamCommand";
|
|
92
|
+
import {
|
|
93
|
+
CreateLookupTableCommandInput,
|
|
94
|
+
CreateLookupTableCommandOutput,
|
|
95
|
+
} from "./commands/CreateLookupTableCommand";
|
|
93
96
|
import {
|
|
94
97
|
CreateScheduledQueryCommandInput,
|
|
95
98
|
CreateScheduledQueryCommandOutput,
|
|
@@ -142,6 +145,10 @@ import {
|
|
|
142
145
|
DeleteLogStreamCommandInput,
|
|
143
146
|
DeleteLogStreamCommandOutput,
|
|
144
147
|
} from "./commands/DeleteLogStreamCommand";
|
|
148
|
+
import {
|
|
149
|
+
DeleteLookupTableCommandInput,
|
|
150
|
+
DeleteLookupTableCommandOutput,
|
|
151
|
+
} from "./commands/DeleteLookupTableCommand";
|
|
145
152
|
import {
|
|
146
153
|
DeleteMetricFilterCommandInput,
|
|
147
154
|
DeleteMetricFilterCommandOutput,
|
|
@@ -222,6 +229,10 @@ import {
|
|
|
222
229
|
DescribeLogStreamsCommandInput,
|
|
223
230
|
DescribeLogStreamsCommandOutput,
|
|
224
231
|
} from "./commands/DescribeLogStreamsCommand";
|
|
232
|
+
import {
|
|
233
|
+
DescribeLookupTablesCommandInput,
|
|
234
|
+
DescribeLookupTablesCommandOutput,
|
|
235
|
+
} from "./commands/DescribeLookupTablesCommand";
|
|
225
236
|
import {
|
|
226
237
|
DescribeMetricFiltersCommandInput,
|
|
227
238
|
DescribeMetricFiltersCommandOutput,
|
|
@@ -302,6 +313,10 @@ import {
|
|
|
302
313
|
GetLogRecordCommandInput,
|
|
303
314
|
GetLogRecordCommandOutput,
|
|
304
315
|
} from "./commands/GetLogRecordCommand";
|
|
316
|
+
import {
|
|
317
|
+
GetLookupTableCommandInput,
|
|
318
|
+
GetLookupTableCommandOutput,
|
|
319
|
+
} from "./commands/GetLookupTableCommand";
|
|
305
320
|
import {
|
|
306
321
|
GetQueryResultsCommandInput,
|
|
307
322
|
GetQueryResultsCommandOutput,
|
|
@@ -478,6 +493,10 @@ import {
|
|
|
478
493
|
UpdateLogAnomalyDetectorCommandInput,
|
|
479
494
|
UpdateLogAnomalyDetectorCommandOutput,
|
|
480
495
|
} from "./commands/UpdateLogAnomalyDetectorCommand";
|
|
496
|
+
import {
|
|
497
|
+
UpdateLookupTableCommandInput,
|
|
498
|
+
UpdateLookupTableCommandOutput,
|
|
499
|
+
} from "./commands/UpdateLookupTableCommand";
|
|
481
500
|
import {
|
|
482
501
|
UpdateScheduledQueryCommandInput,
|
|
483
502
|
UpdateScheduledQueryCommandOutput,
|
|
@@ -500,6 +519,7 @@ export type ServiceInputTypes =
|
|
|
500
519
|
| CreateLogAnomalyDetectorCommandInput
|
|
501
520
|
| CreateLogGroupCommandInput
|
|
502
521
|
| CreateLogStreamCommandInput
|
|
522
|
+
| CreateLookupTableCommandInput
|
|
503
523
|
| CreateScheduledQueryCommandInput
|
|
504
524
|
| DeleteAccountPolicyCommandInput
|
|
505
525
|
| DeleteDataProtectionPolicyCommandInput
|
|
@@ -513,6 +533,7 @@ export type ServiceInputTypes =
|
|
|
513
533
|
| DeleteLogAnomalyDetectorCommandInput
|
|
514
534
|
| DeleteLogGroupCommandInput
|
|
515
535
|
| DeleteLogStreamCommandInput
|
|
536
|
+
| DeleteLookupTableCommandInput
|
|
516
537
|
| DeleteMetricFilterCommandInput
|
|
517
538
|
| DeleteQueryDefinitionCommandInput
|
|
518
539
|
| DeleteResourcePolicyCommandInput
|
|
@@ -533,6 +554,7 @@ export type ServiceInputTypes =
|
|
|
533
554
|
| DescribeIndexPoliciesCommandInput
|
|
534
555
|
| DescribeLogGroupsCommandInput
|
|
535
556
|
| DescribeLogStreamsCommandInput
|
|
557
|
+
| DescribeLookupTablesCommandInput
|
|
536
558
|
| DescribeMetricFiltersCommandInput
|
|
537
559
|
| DescribeQueriesCommandInput
|
|
538
560
|
| DescribeQueryDefinitionsCommandInput
|
|
@@ -553,6 +575,7 @@ export type ServiceInputTypes =
|
|
|
553
575
|
| GetLogGroupFieldsCommandInput
|
|
554
576
|
| GetLogObjectCommandInput
|
|
555
577
|
| GetLogRecordCommandInput
|
|
578
|
+
| GetLookupTableCommandInput
|
|
556
579
|
| GetQueryResultsCommandInput
|
|
557
580
|
| GetScheduledQueryCommandInput
|
|
558
581
|
| GetScheduledQueryHistoryCommandInput
|
|
@@ -597,6 +620,7 @@ export type ServiceInputTypes =
|
|
|
597
620
|
| UpdateAnomalyCommandInput
|
|
598
621
|
| UpdateDeliveryConfigurationCommandInput
|
|
599
622
|
| UpdateLogAnomalyDetectorCommandInput
|
|
623
|
+
| UpdateLookupTableCommandInput
|
|
600
624
|
| UpdateScheduledQueryCommandInput;
|
|
601
625
|
export type ServiceOutputTypes =
|
|
602
626
|
| AssociateKmsKeyCommandOutput
|
|
@@ -609,6 +633,7 @@ export type ServiceOutputTypes =
|
|
|
609
633
|
| CreateLogAnomalyDetectorCommandOutput
|
|
610
634
|
| CreateLogGroupCommandOutput
|
|
611
635
|
| CreateLogStreamCommandOutput
|
|
636
|
+
| CreateLookupTableCommandOutput
|
|
612
637
|
| CreateScheduledQueryCommandOutput
|
|
613
638
|
| DeleteAccountPolicyCommandOutput
|
|
614
639
|
| DeleteDataProtectionPolicyCommandOutput
|
|
@@ -622,6 +647,7 @@ export type ServiceOutputTypes =
|
|
|
622
647
|
| DeleteLogAnomalyDetectorCommandOutput
|
|
623
648
|
| DeleteLogGroupCommandOutput
|
|
624
649
|
| DeleteLogStreamCommandOutput
|
|
650
|
+
| DeleteLookupTableCommandOutput
|
|
625
651
|
| DeleteMetricFilterCommandOutput
|
|
626
652
|
| DeleteQueryDefinitionCommandOutput
|
|
627
653
|
| DeleteResourcePolicyCommandOutput
|
|
@@ -642,6 +668,7 @@ export type ServiceOutputTypes =
|
|
|
642
668
|
| DescribeIndexPoliciesCommandOutput
|
|
643
669
|
| DescribeLogGroupsCommandOutput
|
|
644
670
|
| DescribeLogStreamsCommandOutput
|
|
671
|
+
| DescribeLookupTablesCommandOutput
|
|
645
672
|
| DescribeMetricFiltersCommandOutput
|
|
646
673
|
| DescribeQueriesCommandOutput
|
|
647
674
|
| DescribeQueryDefinitionsCommandOutput
|
|
@@ -662,6 +689,7 @@ export type ServiceOutputTypes =
|
|
|
662
689
|
| GetLogGroupFieldsCommandOutput
|
|
663
690
|
| GetLogObjectCommandOutput
|
|
664
691
|
| GetLogRecordCommandOutput
|
|
692
|
+
| GetLookupTableCommandOutput
|
|
665
693
|
| GetQueryResultsCommandOutput
|
|
666
694
|
| GetScheduledQueryCommandOutput
|
|
667
695
|
| GetScheduledQueryHistoryCommandOutput
|
|
@@ -706,6 +734,7 @@ export type ServiceOutputTypes =
|
|
|
706
734
|
| UpdateAnomalyCommandOutput
|
|
707
735
|
| UpdateDeliveryConfigurationCommandOutput
|
|
708
736
|
| UpdateLogAnomalyDetectorCommandOutput
|
|
737
|
+
| UpdateLookupTableCommandOutput
|
|
709
738
|
| UpdateScheduledQueryCommandOutput;
|
|
710
739
|
export interface ClientDefaults
|
|
711
740
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -725,7 +754,7 @@ export interface ClientDefaults
|
|
|
725
754
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
726
755
|
region?: string | __Provider<string>;
|
|
727
756
|
profile?: string;
|
|
728
|
-
defaultUserAgentProvider?:
|
|
757
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
729
758
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
730
759
|
maxAttempts?: number | __Provider<number>;
|
|
731
760
|
retryMode?: string | __Provider<string>;
|
|
@@ -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
|
+
CreateLookupTableRequest,
|
|
10
|
+
CreateLookupTableResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateLookupTableCommandInput
|
|
15
|
+
extends CreateLookupTableRequest {}
|
|
16
|
+
export interface CreateLookupTableCommandOutput
|
|
17
|
+
extends CreateLookupTableResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateLookupTableCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateLookupTableCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateLookupTableCommandInput,
|
|
24
|
+
CreateLookupTableCommandOutput,
|
|
25
|
+
CloudWatchLogsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateLookupTableCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateLookupTableCommandInput,
|
|
33
|
+
CreateLookupTableCommandOutput,
|
|
34
|
+
CloudWatchLogsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateLookupTableCommand extends CreateLookupTableCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateLookupTableRequest;
|
|
44
|
+
output: CreateLookupTableResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateLookupTableCommandInput;
|
|
48
|
+
output: CreateLookupTableCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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 { DeleteLookupTableRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteLookupTableCommandInput
|
|
12
|
+
extends DeleteLookupTableRequest {}
|
|
13
|
+
export interface DeleteLookupTableCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteLookupTableCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteLookupTableCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteLookupTableCommandInput,
|
|
19
|
+
DeleteLookupTableCommandOutput,
|
|
20
|
+
CloudWatchLogsClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
input: DeleteLookupTableCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteLookupTableCommandInput,
|
|
28
|
+
DeleteLookupTableCommandOutput,
|
|
29
|
+
CloudWatchLogsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteLookupTableCommand extends DeleteLookupTableCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteLookupTableRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteLookupTableCommandInput;
|
|
43
|
+
output: DeleteLookupTableCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|