@aws-sdk/client-cloudwatch-logs 3.1073.0 → 3.1075.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 +28 -0
- package/dist-cjs/index.js +47 -1
- package/dist-cjs/schemas/schemas_0.js +54 -0
- package/dist-es/CloudWatchLogs.js +6 -0
- package/dist-es/commands/DeleteSyslogConfigurationCommand.js +16 -0
- package/dist-es/commands/ListSyslogConfigurationsCommand.js +16 -0
- package/dist-es/commands/PutSyslogConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +49 -0
- package/dist-types/CloudWatchLogs.d.ts +29 -0
- package/dist-types/CloudWatchLogsClient.d.ts +12 -2
- package/dist-types/commands/DeleteSyslogConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/ListSyslogConfigurationsCommand.d.ts +106 -0
- package/dist-types/commands/PutAccountPolicyCommand.d.ts +48 -0
- package/dist-types/commands/PutSyslogConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/UntagLogGroupCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnomalyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDeliveryConfigurationCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +115 -137
- package/dist-types/models/models_1.d.ts +136 -2
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/CloudWatchLogs.d.ts +52 -0
- package/dist-types/ts3.4/CloudWatchLogsClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteSyslogConfigurationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListSyslogConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/PutSyslogConfigurationCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/UntagLogGroupCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAnomalyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDeliveryConfigurationCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -28
- package/dist-types/ts3.4/models/models_1.d.ts +29 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +3 -3
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import { DeleteSyslogConfigurationRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteSyslogConfigurationCommandInput
|
|
12
|
+
extends DeleteSyslogConfigurationRequest {}
|
|
13
|
+
export interface DeleteSyslogConfigurationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteSyslogConfigurationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteSyslogConfigurationCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteSyslogConfigurationCommandInput,
|
|
20
|
+
DeleteSyslogConfigurationCommandOutput,
|
|
21
|
+
CloudWatchLogsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteSyslogConfigurationCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
DeleteSyslogConfigurationCommandInput,
|
|
29
|
+
DeleteSyslogConfigurationCommandOutput,
|
|
30
|
+
CloudWatchLogsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteSyslogConfigurationCommand extends DeleteSyslogConfigurationCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: DeleteSyslogConfigurationRequest;
|
|
42
|
+
output: {};
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: DeleteSyslogConfigurationCommandInput;
|
|
46
|
+
output: DeleteSyslogConfigurationCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import {
|
|
9
|
+
ListSyslogConfigurationsRequest,
|
|
10
|
+
ListSyslogConfigurationsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListSyslogConfigurationsCommandInput
|
|
15
|
+
extends ListSyslogConfigurationsRequest {}
|
|
16
|
+
export interface ListSyslogConfigurationsCommandOutput
|
|
17
|
+
extends ListSyslogConfigurationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListSyslogConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListSyslogConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListSyslogConfigurationsCommandInput,
|
|
24
|
+
ListSyslogConfigurationsCommandOutput,
|
|
25
|
+
CloudWatchLogsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListSyslogConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListSyslogConfigurationsCommandInput,
|
|
33
|
+
ListSyslogConfigurationsCommandOutput,
|
|
34
|
+
CloudWatchLogsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListSyslogConfigurationsCommand extends ListSyslogConfigurationsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListSyslogConfigurationsRequest;
|
|
46
|
+
output: ListSyslogConfigurationsResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListSyslogConfigurationsCommandInput;
|
|
50
|
+
output: ListSyslogConfigurationsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudWatchLogsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudWatchLogsClient";
|
|
8
|
+
import { PutSyslogConfigurationRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutSyslogConfigurationCommandInput
|
|
12
|
+
extends PutSyslogConfigurationRequest {}
|
|
13
|
+
export interface PutSyslogConfigurationCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const PutSyslogConfigurationCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: PutSyslogConfigurationCommandInput
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
18
|
+
PutSyslogConfigurationCommandInput,
|
|
19
|
+
PutSyslogConfigurationCommandOutput,
|
|
20
|
+
CloudWatchLogsClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
input: PutSyslogConfigurationCommandInput
|
|
26
|
+
): import("@smithy/core/client").CommandImpl<
|
|
27
|
+
PutSyslogConfigurationCommandInput,
|
|
28
|
+
PutSyslogConfigurationCommandOutput,
|
|
29
|
+
CloudWatchLogsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): {
|
|
34
|
+
[x: string]: unknown;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export declare class PutSyslogConfigurationCommand extends PutSyslogConfigurationCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: PutSyslogConfigurationRequest;
|
|
41
|
+
output: {};
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: PutSyslogConfigurationCommandInput;
|
|
45
|
+
output: PutSyslogConfigurationCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudWatchLogsClient";
|
|
8
|
-
import { UntagLogGroupRequest } from "../models/
|
|
8
|
+
import { UntagLogGroupRequest } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UntagLogGroupCommandInput extends UntagLogGroupRequest {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudWatchLogsClient";
|
|
8
|
-
import { UntagResourceRequest } from "../models/
|
|
8
|
+
import { UntagResourceRequest } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudWatchLogsClient";
|
|
8
|
-
import { UpdateAnomalyRequest } from "../models/
|
|
8
|
+
import { UpdateAnomalyRequest } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface UpdateAnomalyCommandInput extends UpdateAnomalyRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudWatchLogsClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
UpdateDeliveryConfigurationRequest,
|
|
10
|
+
UpdateDeliveryConfigurationResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface UpdateDeliveryConfigurationCommandInput
|
|
@@ -29,6 +29,7 @@ export * from "./DeleteResourcePolicyCommand";
|
|
|
29
29
|
export * from "./DeleteRetentionPolicyCommand";
|
|
30
30
|
export * from "./DeleteScheduledQueryCommand";
|
|
31
31
|
export * from "./DeleteSubscriptionFilterCommand";
|
|
32
|
+
export * from "./DeleteSyslogConfigurationCommand";
|
|
32
33
|
export * from "./DeleteTransformerCommand";
|
|
33
34
|
export * from "./DescribeAccountPoliciesCommand";
|
|
34
35
|
export * from "./DescribeConfigurationTemplatesCommand";
|
|
@@ -77,6 +78,7 @@ export * from "./ListLogGroupsCommand";
|
|
|
77
78
|
export * from "./ListLogGroupsForQueryCommand";
|
|
78
79
|
export * from "./ListScheduledQueriesCommand";
|
|
79
80
|
export * from "./ListSourcesForS3TableIntegrationCommand";
|
|
81
|
+
export * from "./ListSyslogConfigurationsCommand";
|
|
80
82
|
export * from "./ListTagsForResourceCommand";
|
|
81
83
|
export * from "./ListTagsLogGroupCommand";
|
|
82
84
|
export * from "./PutAccountPolicyCommand";
|
|
@@ -96,6 +98,7 @@ export * from "./PutQueryDefinitionCommand";
|
|
|
96
98
|
export * from "./PutResourcePolicyCommand";
|
|
97
99
|
export * from "./PutRetentionPolicyCommand";
|
|
98
100
|
export * from "./PutSubscriptionFilterCommand";
|
|
101
|
+
export * from "./PutSyslogConfigurationCommand";
|
|
99
102
|
export * from "./PutTransformerCommand";
|
|
100
103
|
export * from "./StartLiveTailCommand";
|
|
101
104
|
export * from "./StartQueryCommand";
|
|
@@ -287,6 +287,11 @@ export declare const S3TableIntegrationSourceStatus: {
|
|
|
287
287
|
};
|
|
288
288
|
export type S3TableIntegrationSourceStatus =
|
|
289
289
|
(typeof S3TableIntegrationSourceStatus)[keyof typeof S3TableIntegrationSourceStatus];
|
|
290
|
+
export declare const SyslogSourceType: {
|
|
291
|
+
readonly VPCE: "VPCE";
|
|
292
|
+
};
|
|
293
|
+
export type SyslogSourceType =
|
|
294
|
+
(typeof SyslogSourceType)[keyof typeof SyslogSourceType];
|
|
290
295
|
export declare const SuppressionUnit: {
|
|
291
296
|
readonly HOURS: "HOURS";
|
|
292
297
|
readonly MINUTES: "MINUTES";
|
|
@@ -37,8 +37,7 @@ import {
|
|
|
37
37
|
StandardUnit,
|
|
38
38
|
State,
|
|
39
39
|
SuppressionState,
|
|
40
|
-
|
|
41
|
-
SuppressionUnit,
|
|
40
|
+
SyslogSourceType,
|
|
42
41
|
Type,
|
|
43
42
|
} from "./enums";
|
|
44
43
|
import {
|
|
@@ -401,6 +400,10 @@ export interface DeleteSubscriptionFilterRequest {
|
|
|
401
400
|
logGroupName: string | undefined;
|
|
402
401
|
filterName: string | undefined;
|
|
403
402
|
}
|
|
403
|
+
export interface DeleteSyslogConfigurationRequest {
|
|
404
|
+
logGroupIdentifier: string | undefined;
|
|
405
|
+
vpcEndpointId?: string | undefined;
|
|
406
|
+
}
|
|
404
407
|
export interface DeleteTransformerRequest {
|
|
405
408
|
logGroupIdentifier: string | undefined;
|
|
406
409
|
}
|
|
@@ -1365,6 +1368,22 @@ export interface ListSourcesForS3TableIntegrationResponse {
|
|
|
1365
1368
|
sources?: S3TableIntegrationSource[] | undefined;
|
|
1366
1369
|
nextToken?: string | undefined;
|
|
1367
1370
|
}
|
|
1371
|
+
export interface ListSyslogConfigurationsRequest {
|
|
1372
|
+
logGroupIdentifier?: string | undefined;
|
|
1373
|
+
vpcEndpointId?: string | undefined;
|
|
1374
|
+
nextToken?: string | undefined;
|
|
1375
|
+
maxResults?: number | undefined;
|
|
1376
|
+
}
|
|
1377
|
+
export interface SyslogConfiguration {
|
|
1378
|
+
logGroupArn?: string | undefined;
|
|
1379
|
+
sourceType?: SyslogSourceType | undefined;
|
|
1380
|
+
vpcEndpointId?: string | undefined;
|
|
1381
|
+
createdAt?: number | undefined;
|
|
1382
|
+
}
|
|
1383
|
+
export interface ListSyslogConfigurationsResponse {
|
|
1384
|
+
syslogConfigurations?: SyslogConfiguration[] | undefined;
|
|
1385
|
+
nextToken?: string | undefined;
|
|
1386
|
+
}
|
|
1368
1387
|
export interface ListTagsForResourceRequest {
|
|
1369
1388
|
resourceArn: string | undefined;
|
|
1370
1389
|
}
|
|
@@ -1575,6 +1594,10 @@ export interface PutSubscriptionFilterRequest {
|
|
|
1575
1594
|
fieldSelectionCriteria?: string | undefined;
|
|
1576
1595
|
emitSystemFields?: string[] | undefined;
|
|
1577
1596
|
}
|
|
1597
|
+
export interface PutSyslogConfigurationRequest {
|
|
1598
|
+
logGroupIdentifier: string | undefined;
|
|
1599
|
+
vpcEndpointId?: string | undefined;
|
|
1600
|
+
}
|
|
1578
1601
|
export interface PutTransformerRequest {
|
|
1579
1602
|
logGroupIdentifier: string | undefined;
|
|
1580
1603
|
transformerConfig: Processor[] | undefined;
|
|
@@ -1697,29 +1720,3 @@ export interface TransformedLogRecord {
|
|
|
1697
1720
|
export interface TestTransformerResponse {
|
|
1698
1721
|
transformedLogs?: TransformedLogRecord[] | undefined;
|
|
1699
1722
|
}
|
|
1700
|
-
export interface UntagLogGroupRequest {
|
|
1701
|
-
logGroupName: string | undefined;
|
|
1702
|
-
tags: string[] | undefined;
|
|
1703
|
-
}
|
|
1704
|
-
export interface UntagResourceRequest {
|
|
1705
|
-
resourceArn: string | undefined;
|
|
1706
|
-
tagKeys: string[] | undefined;
|
|
1707
|
-
}
|
|
1708
|
-
export interface SuppressionPeriod {
|
|
1709
|
-
value?: number | undefined;
|
|
1710
|
-
suppressionUnit?: SuppressionUnit | undefined;
|
|
1711
|
-
}
|
|
1712
|
-
export interface UpdateAnomalyRequest {
|
|
1713
|
-
anomalyId?: string | undefined;
|
|
1714
|
-
patternId?: string | undefined;
|
|
1715
|
-
anomalyDetectorArn: string | undefined;
|
|
1716
|
-
suppressionType?: SuppressionType | undefined;
|
|
1717
|
-
suppressionPeriod?: SuppressionPeriod | undefined;
|
|
1718
|
-
baseline?: boolean | undefined;
|
|
1719
|
-
}
|
|
1720
|
-
export interface UpdateDeliveryConfigurationRequest {
|
|
1721
|
-
id: string | undefined;
|
|
1722
|
-
recordFields?: string[] | undefined;
|
|
1723
|
-
fieldDelimiter?: string | undefined;
|
|
1724
|
-
s3DeliveryConfiguration?: S3DeliveryConfiguration | undefined;
|
|
1725
|
-
}
|
|
@@ -4,8 +4,36 @@ import {
|
|
|
4
4
|
QueryLanguage,
|
|
5
5
|
ScheduledQueryState,
|
|
6
6
|
ScheduleType,
|
|
7
|
+
SuppressionType,
|
|
8
|
+
SuppressionUnit,
|
|
7
9
|
} from "./enums";
|
|
8
|
-
import { DestinationConfiguration } from "./models_0";
|
|
10
|
+
import { DestinationConfiguration, S3DeliveryConfiguration } from "./models_0";
|
|
11
|
+
export interface UntagLogGroupRequest {
|
|
12
|
+
logGroupName: string | undefined;
|
|
13
|
+
tags: string[] | undefined;
|
|
14
|
+
}
|
|
15
|
+
export interface UntagResourceRequest {
|
|
16
|
+
resourceArn: string | undefined;
|
|
17
|
+
tagKeys: string[] | undefined;
|
|
18
|
+
}
|
|
19
|
+
export interface SuppressionPeriod {
|
|
20
|
+
value?: number | undefined;
|
|
21
|
+
suppressionUnit?: SuppressionUnit | undefined;
|
|
22
|
+
}
|
|
23
|
+
export interface UpdateAnomalyRequest {
|
|
24
|
+
anomalyId?: string | undefined;
|
|
25
|
+
patternId?: string | undefined;
|
|
26
|
+
anomalyDetectorArn: string | undefined;
|
|
27
|
+
suppressionType?: SuppressionType | undefined;
|
|
28
|
+
suppressionPeriod?: SuppressionPeriod | undefined;
|
|
29
|
+
baseline?: boolean | undefined;
|
|
30
|
+
}
|
|
31
|
+
export interface UpdateDeliveryConfigurationRequest {
|
|
32
|
+
id: string | undefined;
|
|
33
|
+
recordFields?: string[] | undefined;
|
|
34
|
+
fieldDelimiter?: string | undefined;
|
|
35
|
+
s3DeliveryConfiguration?: S3DeliveryConfiguration | undefined;
|
|
36
|
+
}
|
|
9
37
|
export interface UpdateDeliveryConfigurationResponse {}
|
|
10
38
|
export interface UpdateLogAnomalyDetectorRequest {
|
|
11
39
|
anomalyDetectorArn: string | undefined;
|
|
@@ -86,6 +86,7 @@ export declare var DeleteRetentionPolicyRequest$: StaticStructureSchema;
|
|
|
86
86
|
export declare var DeleteScheduledQueryRequest$: StaticStructureSchema;
|
|
87
87
|
export declare var DeleteScheduledQueryResponse$: StaticStructureSchema;
|
|
88
88
|
export declare var DeleteSubscriptionFilterRequest$: StaticStructureSchema;
|
|
89
|
+
export declare var DeleteSyslogConfigurationRequest$: StaticStructureSchema;
|
|
89
90
|
export declare var DeleteTransformerRequest$: StaticStructureSchema;
|
|
90
91
|
export declare var Delivery$: StaticStructureSchema;
|
|
91
92
|
export declare var DeliveryDestination$: StaticStructureSchema;
|
|
@@ -203,6 +204,8 @@ export declare var ListScheduledQueriesRequest$: StaticStructureSchema;
|
|
|
203
204
|
export declare var ListScheduledQueriesResponse$: StaticStructureSchema;
|
|
204
205
|
export declare var ListSourcesForS3TableIntegrationRequest$: StaticStructureSchema;
|
|
205
206
|
export declare var ListSourcesForS3TableIntegrationResponse$: StaticStructureSchema;
|
|
207
|
+
export declare var ListSyslogConfigurationsRequest$: StaticStructureSchema;
|
|
208
|
+
export declare var ListSyslogConfigurationsResponse$: StaticStructureSchema;
|
|
206
209
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
207
210
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
208
211
|
export declare var ListTagsLogGroupRequest$: StaticStructureSchema;
|
|
@@ -277,6 +280,7 @@ export declare var PutResourcePolicyRequest$: StaticStructureSchema;
|
|
|
277
280
|
export declare var PutResourcePolicyResponse$: StaticStructureSchema;
|
|
278
281
|
export declare var PutRetentionPolicyRequest$: StaticStructureSchema;
|
|
279
282
|
export declare var PutSubscriptionFilterRequest$: StaticStructureSchema;
|
|
283
|
+
export declare var PutSyslogConfigurationRequest$: StaticStructureSchema;
|
|
280
284
|
export declare var PutTransformerRequest$: StaticStructureSchema;
|
|
281
285
|
export declare var QueryCompileError$: StaticStructureSchema;
|
|
282
286
|
export declare var QueryCompileErrorLocation$: StaticStructureSchema;
|
|
@@ -310,6 +314,7 @@ export declare var SubscriptionFilter$: StaticStructureSchema;
|
|
|
310
314
|
export declare var SubstituteString$: StaticStructureSchema;
|
|
311
315
|
export declare var SubstituteStringEntry$: StaticStructureSchema;
|
|
312
316
|
export declare var SuppressionPeriod$: StaticStructureSchema;
|
|
317
|
+
export declare var SyslogConfiguration$: StaticStructureSchema;
|
|
313
318
|
export declare var TagFilter$: StaticStructureSchema;
|
|
314
319
|
export declare var TagLogGroupRequest$: StaticStructureSchema;
|
|
315
320
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
@@ -368,6 +373,7 @@ export declare var DeleteResourcePolicy$: StaticOperationSchema;
|
|
|
368
373
|
export declare var DeleteRetentionPolicy$: StaticOperationSchema;
|
|
369
374
|
export declare var DeleteScheduledQuery$: StaticOperationSchema;
|
|
370
375
|
export declare var DeleteSubscriptionFilter$: StaticOperationSchema;
|
|
376
|
+
export declare var DeleteSyslogConfiguration$: StaticOperationSchema;
|
|
371
377
|
export declare var DeleteTransformer$: StaticOperationSchema;
|
|
372
378
|
export declare var DescribeAccountPolicies$: StaticOperationSchema;
|
|
373
379
|
export declare var DescribeConfigurationTemplates$: StaticOperationSchema;
|
|
@@ -416,6 +422,7 @@ export declare var ListLogGroups$: StaticOperationSchema;
|
|
|
416
422
|
export declare var ListLogGroupsForQuery$: StaticOperationSchema;
|
|
417
423
|
export declare var ListScheduledQueries$: StaticOperationSchema;
|
|
418
424
|
export declare var ListSourcesForS3TableIntegration$: StaticOperationSchema;
|
|
425
|
+
export declare var ListSyslogConfigurations$: StaticOperationSchema;
|
|
419
426
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
420
427
|
export declare var ListTagsLogGroup$: StaticOperationSchema;
|
|
421
428
|
export declare var PutAccountPolicy$: StaticOperationSchema;
|
|
@@ -435,6 +442,7 @@ export declare var PutQueryDefinition$: StaticOperationSchema;
|
|
|
435
442
|
export declare var PutResourcePolicy$: StaticOperationSchema;
|
|
436
443
|
export declare var PutRetentionPolicy$: StaticOperationSchema;
|
|
437
444
|
export declare var PutSubscriptionFilter$: StaticOperationSchema;
|
|
445
|
+
export declare var PutSyslogConfiguration$: StaticOperationSchema;
|
|
438
446
|
export declare var PutTransformer$: StaticOperationSchema;
|
|
439
447
|
export declare var StartLiveTail$: StaticOperationSchema;
|
|
440
448
|
export declare var StartQuery$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudwatch-logs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudwatch Logs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1075.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.974.23",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.58",
|
|
32
32
|
"@aws-sdk/types": "^3.973.13",
|
|
33
33
|
"@smithy/core": "^3.24.6",
|
|
34
34
|
"@smithy/fetch-http-handler": "^5.4.6",
|