@aws-sdk/client-cloudwatch-logs 3.1019.0 → 3.1020.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +70 -0
  3. package/dist-cjs/schemas/schemas_0.js +110 -16
  4. package/dist-es/CloudWatchLogs.js +14 -4
  5. package/dist-es/commands/CreateLookupTableCommand.js +16 -0
  6. package/dist-es/commands/DeleteLookupTableCommand.js +16 -0
  7. package/dist-es/commands/DescribeLookupTablesCommand.js +16 -0
  8. package/dist-es/commands/GetLookupTableCommand.js +16 -0
  9. package/dist-es/commands/UpdateLookupTableCommand.js +16 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/index.js +1 -0
  12. package/dist-es/models/models_1.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +101 -7
  14. package/dist-types/CloudWatchLogs.d.ts +144 -108
  15. package/dist-types/CloudWatchLogsClient.d.ts +118 -113
  16. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  17. package/dist-types/commands/CreateLookupTableCommand.d.ts +103 -0
  18. package/dist-types/commands/DeleteLookupTableCommand.d.ts +86 -0
  19. package/dist-types/commands/DescribeLookupTablesCommand.d.ts +103 -0
  20. package/dist-types/commands/GetLogFieldsCommand.d.ts +2 -1
  21. package/dist-types/commands/GetLookupTableCommand.d.ts +92 -0
  22. package/dist-types/commands/UpdateLookupTableCommand.d.ts +97 -0
  23. package/dist-types/commands/UpdateScheduledQueryCommand.d.ts +1 -1
  24. package/dist-types/commands/index.d.ts +5 -0
  25. package/dist-types/index.d.ts +2 -1
  26. package/dist-types/models/models_0.d.ts +216 -201
  27. package/dist-types/models/models_1.d.ts +234 -0
  28. package/dist-types/pagination/DescribeConfigurationTemplatesPaginator.d.ts +1 -1
  29. package/dist-types/pagination/DescribeDeliveriesPaginator.d.ts +1 -1
  30. package/dist-types/pagination/DescribeDeliveryDestinationsPaginator.d.ts +1 -1
  31. package/dist-types/pagination/DescribeDeliverySourcesPaginator.d.ts +1 -1
  32. package/dist-types/pagination/DescribeDestinationsPaginator.d.ts +1 -1
  33. package/dist-types/pagination/DescribeLogGroupsPaginator.d.ts +1 -1
  34. package/dist-types/pagination/DescribeLogStreamsPaginator.d.ts +1 -1
  35. package/dist-types/pagination/DescribeMetricFiltersPaginator.d.ts +1 -1
  36. package/dist-types/pagination/DescribeSubscriptionFiltersPaginator.d.ts +1 -1
  37. package/dist-types/pagination/FilterLogEventsPaginator.d.ts +1 -1
  38. package/dist-types/pagination/GetLogEventsPaginator.d.ts +1 -1
  39. package/dist-types/pagination/GetScheduledQueryHistoryPaginator.d.ts +1 -1
  40. package/dist-types/pagination/ListAggregateLogGroupSummariesPaginator.d.ts +1 -1
  41. package/dist-types/pagination/ListAnomaliesPaginator.d.ts +1 -1
  42. package/dist-types/pagination/ListLogAnomalyDetectorsPaginator.d.ts +1 -1
  43. package/dist-types/pagination/ListLogGroupsForQueryPaginator.d.ts +1 -1
  44. package/dist-types/pagination/ListScheduledQueriesPaginator.d.ts +1 -1
  45. package/dist-types/pagination/ListSourcesForS3TableIntegrationPaginator.d.ts +1 -1
  46. package/dist-types/schemas/schemas_0.d.ts +15 -0
  47. package/dist-types/ts3.4/CloudWatchLogs.d.ts +86 -0
  48. package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +32 -3
  49. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +46 -0
  52. package/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +2 -1
  54. package/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +50 -0
  55. package/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +49 -0
  56. package/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +49 -45
  60. package/dist-types/ts3.4/models/models_1.d.ts +53 -0
  61. package/dist-types/ts3.4/schemas/schemas_0.d.ts +15 -0
  62. package/package.json +14 -14
@@ -0,0 +1,103 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient";
4
+ import type { DescribeLookupTablesRequest, DescribeLookupTablesResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeLookupTablesCommand}.
14
+ */
15
+ export interface DescribeLookupTablesCommandInput extends DescribeLookupTablesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeLookupTablesCommand}.
21
+ */
22
+ export interface DescribeLookupTablesCommandOutput extends DescribeLookupTablesResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeLookupTablesCommand_base: {
25
+ new (input: DescribeLookupTablesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeLookupTablesCommandInput, DescribeLookupTablesCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [DescribeLookupTablesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeLookupTablesCommandInput, DescribeLookupTablesCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves metadata about lookup tables in your account. You can optionally filter the
31
+ * results by table name prefix. Results are sorted by table name in ascending order.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { CloudWatchLogsClient, DescribeLookupTablesCommand } from "@aws-sdk/client-cloudwatch-logs"; // ES Modules import
36
+ * // const { CloudWatchLogsClient, DescribeLookupTablesCommand } = require("@aws-sdk/client-cloudwatch-logs"); // CommonJS import
37
+ * // import type { CloudWatchLogsClientConfig } from "@aws-sdk/client-cloudwatch-logs";
38
+ * const config = {}; // type is CloudWatchLogsClientConfig
39
+ * const client = new CloudWatchLogsClient(config);
40
+ * const input = { // DescribeLookupTablesRequest
41
+ * lookupTableNamePrefix: "STRING_VALUE",
42
+ * maxResults: Number("int"),
43
+ * nextToken: "STRING_VALUE",
44
+ * };
45
+ * const command = new DescribeLookupTablesCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // DescribeLookupTablesResponse
48
+ * // lookupTables: [ // LookupTables
49
+ * // { // LookupTable
50
+ * // lookupTableArn: "STRING_VALUE",
51
+ * // lookupTableName: "STRING_VALUE",
52
+ * // description: "STRING_VALUE",
53
+ * // tableFields: [ // TableFields
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // recordsCount: Number("long"),
57
+ * // sizeBytes: Number("long"),
58
+ * // lastUpdatedTime: Number("long"),
59
+ * // kmsKeyId: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // nextToken: "STRING_VALUE",
63
+ * // };
64
+ *
65
+ * ```
66
+ *
67
+ * @param DescribeLookupTablesCommandInput - {@link DescribeLookupTablesCommandInput}
68
+ * @returns {@link DescribeLookupTablesCommandOutput}
69
+ * @see {@link DescribeLookupTablesCommandInput} for command's `input` shape.
70
+ * @see {@link DescribeLookupTablesCommandOutput} for command's `response` shape.
71
+ * @see {@link CloudWatchLogsClientResolvedConfig | config} for CloudWatchLogsClient's `config` shape.
72
+ *
73
+ * @throws {@link AccessDeniedException} (client fault)
74
+ * <p>You don't have sufficient permissions to perform this action.</p>
75
+ *
76
+ * @throws {@link InvalidParameterException} (client fault)
77
+ * <p>A parameter is specified incorrectly.</p>
78
+ *
79
+ * @throws {@link ResourceNotFoundException} (client fault)
80
+ * <p>The specified resource does not exist.</p>
81
+ *
82
+ * @throws {@link ServiceUnavailableException} (server fault)
83
+ * <p>The service cannot complete the request.</p>
84
+ *
85
+ * @throws {@link CloudWatchLogsServiceException}
86
+ * <p>Base exception class for all service exceptions from CloudWatchLogs service.</p>
87
+ *
88
+ *
89
+ * @public
90
+ */
91
+ export declare class DescribeLookupTablesCommand extends DescribeLookupTablesCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: DescribeLookupTablesRequest;
96
+ output: DescribeLookupTablesResponse;
97
+ };
98
+ sdk: {
99
+ input: DescribeLookupTablesCommandInput;
100
+ output: DescribeLookupTablesCommandOutput;
101
+ };
102
+ };
103
+ }
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient";
4
- import type { GetLogFieldsRequest, GetLogFieldsResponse } from "../models/models_0";
4
+ import type { GetLogFieldsRequest } from "../models/models_0";
5
+ import type { GetLogFieldsResponse } from "../models/models_1";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient";
4
+ import type { GetLookupTableRequest, GetLookupTableResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetLookupTableCommand}.
14
+ */
15
+ export interface GetLookupTableCommandInput extends GetLookupTableRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetLookupTableCommand}.
21
+ */
22
+ export interface GetLookupTableCommandOutput extends GetLookupTableResponse, __MetadataBearer {
23
+ }
24
+ declare const GetLookupTableCommand_base: {
25
+ new (input: GetLookupTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetLookupTableCommandInput, GetLookupTableCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetLookupTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetLookupTableCommandInput, GetLookupTableCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the full content of a lookup table, including the CSV data.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { CloudWatchLogsClient, GetLookupTableCommand } from "@aws-sdk/client-cloudwatch-logs"; // ES Modules import
35
+ * // const { CloudWatchLogsClient, GetLookupTableCommand } = require("@aws-sdk/client-cloudwatch-logs"); // CommonJS import
36
+ * // import type { CloudWatchLogsClientConfig } from "@aws-sdk/client-cloudwatch-logs";
37
+ * const config = {}; // type is CloudWatchLogsClientConfig
38
+ * const client = new CloudWatchLogsClient(config);
39
+ * const input = { // GetLookupTableRequest
40
+ * lookupTableArn: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetLookupTableCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetLookupTableResponse
45
+ * // lookupTableArn: "STRING_VALUE",
46
+ * // lookupTableName: "STRING_VALUE",
47
+ * // description: "STRING_VALUE",
48
+ * // tableBody: "STRING_VALUE",
49
+ * // sizeBytes: Number("long"),
50
+ * // lastUpdatedTime: Number("long"),
51
+ * // kmsKeyId: "STRING_VALUE",
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param GetLookupTableCommandInput - {@link GetLookupTableCommandInput}
57
+ * @returns {@link GetLookupTableCommandOutput}
58
+ * @see {@link GetLookupTableCommandInput} for command's `input` shape.
59
+ * @see {@link GetLookupTableCommandOutput} for command's `response` shape.
60
+ * @see {@link CloudWatchLogsClientResolvedConfig | config} for CloudWatchLogsClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>You don't have sufficient permissions to perform this action.</p>
64
+ *
65
+ * @throws {@link InvalidParameterException} (client fault)
66
+ * <p>A parameter is specified incorrectly.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The specified resource does not exist.</p>
70
+ *
71
+ * @throws {@link ServiceUnavailableException} (server fault)
72
+ * <p>The service cannot complete the request.</p>
73
+ *
74
+ * @throws {@link CloudWatchLogsServiceException}
75
+ * <p>Base exception class for all service exceptions from CloudWatchLogs service.</p>
76
+ *
77
+ *
78
+ * @public
79
+ */
80
+ export declare class GetLookupTableCommand extends GetLookupTableCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: GetLookupTableRequest;
85
+ output: GetLookupTableResponse;
86
+ };
87
+ sdk: {
88
+ input: GetLookupTableCommandInput;
89
+ output: GetLookupTableCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -0,0 +1,97 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient";
4
+ import type { UpdateLookupTableRequest } from "../models/models_0";
5
+ import type { UpdateLookupTableResponse } from "../models/models_1";
6
+ /**
7
+ * @public
8
+ */
9
+ export type { __MetadataBearer };
10
+ export { $Command };
11
+ /**
12
+ * @public
13
+ *
14
+ * The input for {@link UpdateLookupTableCommand}.
15
+ */
16
+ export interface UpdateLookupTableCommandInput extends UpdateLookupTableRequest {
17
+ }
18
+ /**
19
+ * @public
20
+ *
21
+ * The output of {@link UpdateLookupTableCommand}.
22
+ */
23
+ export interface UpdateLookupTableCommandOutput extends UpdateLookupTableResponse, __MetadataBearer {
24
+ }
25
+ declare const UpdateLookupTableCommand_base: {
26
+ new (input: UpdateLookupTableCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLookupTableCommandInput, UpdateLookupTableCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ new (input: UpdateLookupTableCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateLookupTableCommandInput, UpdateLookupTableCommandOutput, CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ /**
31
+ * <p>Updates an existing lookup table by replacing all of its CSV content. After the update
32
+ * completes, queries that use this table will use the new data.</p>
33
+ * <p>This is a full replacement operation. All existing content is replaced with the new CSV
34
+ * data.</p>
35
+ * @example
36
+ * Use a bare-bones client and the command you need to make an API call.
37
+ * ```javascript
38
+ * import { CloudWatchLogsClient, UpdateLookupTableCommand } from "@aws-sdk/client-cloudwatch-logs"; // ES Modules import
39
+ * // const { CloudWatchLogsClient, UpdateLookupTableCommand } = require("@aws-sdk/client-cloudwatch-logs"); // CommonJS import
40
+ * // import type { CloudWatchLogsClientConfig } from "@aws-sdk/client-cloudwatch-logs";
41
+ * const config = {}; // type is CloudWatchLogsClientConfig
42
+ * const client = new CloudWatchLogsClient(config);
43
+ * const input = { // UpdateLookupTableRequest
44
+ * lookupTableArn: "STRING_VALUE", // required
45
+ * description: "STRING_VALUE",
46
+ * tableBody: "STRING_VALUE", // required
47
+ * kmsKeyId: "STRING_VALUE",
48
+ * };
49
+ * const command = new UpdateLookupTableCommand(input);
50
+ * const response = await client.send(command);
51
+ * // { // UpdateLookupTableResponse
52
+ * // lookupTableArn: "STRING_VALUE",
53
+ * // lastUpdatedTime: Number("long"),
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param UpdateLookupTableCommandInput - {@link UpdateLookupTableCommandInput}
59
+ * @returns {@link UpdateLookupTableCommandOutput}
60
+ * @see {@link UpdateLookupTableCommandInput} for command's `input` shape.
61
+ * @see {@link UpdateLookupTableCommandOutput} for command's `response` shape.
62
+ * @see {@link CloudWatchLogsClientResolvedConfig | config} for CloudWatchLogsClient's `config` shape.
63
+ *
64
+ * @throws {@link AccessDeniedException} (client fault)
65
+ * <p>You don't have sufficient permissions to perform this action.</p>
66
+ *
67
+ * @throws {@link InvalidParameterException} (client fault)
68
+ * <p>A parameter is specified incorrectly.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The specified resource does not exist.</p>
72
+ *
73
+ * @throws {@link ServiceUnavailableException} (server fault)
74
+ * <p>The service cannot complete the request.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>One of the parameters for the request is not valid.</p>
78
+ *
79
+ * @throws {@link CloudWatchLogsServiceException}
80
+ * <p>Base exception class for all service exceptions from CloudWatchLogs service.</p>
81
+ *
82
+ *
83
+ * @public
84
+ */
85
+ export declare class UpdateLookupTableCommand extends UpdateLookupTableCommand_base {
86
+ /** @internal type navigation helper, not in runtime. */
87
+ protected static __types: {
88
+ api: {
89
+ input: UpdateLookupTableRequest;
90
+ output: UpdateLookupTableResponse;
91
+ };
92
+ sdk: {
93
+ input: UpdateLookupTableCommandInput;
94
+ output: UpdateLookupTableCommandOutput;
95
+ };
96
+ };
97
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient";
4
- import type { UpdateScheduledQueryRequest, UpdateScheduledQueryResponse } from "../models/models_0";
4
+ import type { UpdateScheduledQueryRequest, UpdateScheduledQueryResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -8,6 +8,7 @@ export * from "./CreateImportTaskCommand";
8
8
  export * from "./CreateLogAnomalyDetectorCommand";
9
9
  export * from "./CreateLogGroupCommand";
10
10
  export * from "./CreateLogStreamCommand";
11
+ export * from "./CreateLookupTableCommand";
11
12
  export * from "./CreateScheduledQueryCommand";
12
13
  export * from "./DeleteAccountPolicyCommand";
13
14
  export * from "./DeleteDataProtectionPolicyCommand";
@@ -21,6 +22,7 @@ export * from "./DeleteIntegrationCommand";
21
22
  export * from "./DeleteLogAnomalyDetectorCommand";
22
23
  export * from "./DeleteLogGroupCommand";
23
24
  export * from "./DeleteLogStreamCommand";
25
+ export * from "./DeleteLookupTableCommand";
24
26
  export * from "./DeleteMetricFilterCommand";
25
27
  export * from "./DeleteQueryDefinitionCommand";
26
28
  export * from "./DeleteResourcePolicyCommand";
@@ -41,6 +43,7 @@ export * from "./DescribeImportTasksCommand";
41
43
  export * from "./DescribeIndexPoliciesCommand";
42
44
  export * from "./DescribeLogGroupsCommand";
43
45
  export * from "./DescribeLogStreamsCommand";
46
+ export * from "./DescribeLookupTablesCommand";
44
47
  export * from "./DescribeMetricFiltersCommand";
45
48
  export * from "./DescribeQueriesCommand";
46
49
  export * from "./DescribeQueryDefinitionsCommand";
@@ -61,6 +64,7 @@ export * from "./GetLogFieldsCommand";
61
64
  export * from "./GetLogGroupFieldsCommand";
62
65
  export * from "./GetLogObjectCommand";
63
66
  export * from "./GetLogRecordCommand";
67
+ export * from "./GetLookupTableCommand";
64
68
  export * from "./GetQueryResultsCommand";
65
69
  export * from "./GetScheduledQueryCommand";
66
70
  export * from "./GetScheduledQueryHistoryCommand";
@@ -105,4 +109,5 @@ export * from "./UntagResourceCommand";
105
109
  export * from "./UpdateAnomalyCommand";
106
110
  export * from "./UpdateDeliveryConfigurationCommand";
107
111
  export * from "./UpdateLogAnomalyDetectorCommand";
112
+ export * from "./UpdateLookupTableCommand";
108
113
  export * from "./UpdateScheduledQueryCommand";
@@ -39,7 +39,7 @@
39
39
  */
40
40
  export * from "./CloudWatchLogsClient";
41
41
  export * from "./CloudWatchLogs";
42
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
42
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
43
43
  export type { RuntimeExtension } from "./runtimeExtensions";
44
44
  export type { CloudWatchLogsExtensionConfiguration } from "./extensionConfiguration";
45
45
  export * from "./commands";
@@ -48,4 +48,5 @@ export * from "./pagination";
48
48
  export * from "./models/enums";
49
49
  export * from "./models/errors";
50
50
  export * from "./models/models_0";
51
+ export * from "./models/models_1";
51
52
  export { CloudWatchLogsServiceException } from "./models/CloudWatchLogsServiceException";