@aws-lite/cloudwatch-logs-types 0.0.10 → 0.1.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/index.d.ts +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
/* ! Do not remove IMPORTS_START / IMPORTS_END ! */
|
|
3
3
|
// $IMPORTS_START
|
|
4
4
|
DeleteLogGroupCommandOutput as DeleteLogGroupResponse,
|
|
5
|
+
DeleteLogStreamCommandOutput as DeleteLogStreamResponse,
|
|
5
6
|
DescribeLogGroupsCommandOutput as DescribeLogGroupsResponse,
|
|
6
7
|
DescribeLogStreamsCommandOutput as DescribeLogStreamsResponse,
|
|
7
8
|
GetLogEventsCommandOutput as GetLogEventsResponse,
|
|
@@ -19,6 +20,12 @@ declare interface AwsLiteCloudWatchLogs {
|
|
|
19
20
|
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DeleteLogGroup CloudWatch Logs: DeleteLogGroup}
|
|
20
21
|
*/
|
|
21
22
|
DeleteLogGroup: (input: { logGroupName: string }) => Promise<DeleteLogGroupResponse>
|
|
23
|
+
/**
|
|
24
|
+
* @description
|
|
25
|
+
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteLogStream.html CloudWatch Logs: DeleteLogStream}
|
|
26
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DeleteLogStream CloudWatch Logs: DeleteLogStream}
|
|
27
|
+
*/
|
|
28
|
+
DeleteLogStream: (input: { logGroupName: string, logStreamName: string }) => Promise<DeleteLogStreamResponse>
|
|
22
29
|
/**
|
|
23
30
|
* @description
|
|
24
31
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html CloudWatch Logs: DescribeLogGroups}
|
|
@@ -63,6 +70,7 @@ export type {
|
|
|
63
70
|
/* ! Do not remove EXPORT_START / EXPORT_END ! */
|
|
64
71
|
// $EXPORT_START
|
|
65
72
|
DeleteLogGroupResponse,
|
|
73
|
+
DeleteLogStreamResponse,
|
|
66
74
|
DescribeLogGroupsResponse,
|
|
67
75
|
DescribeLogStreamsResponse,
|
|
68
76
|
GetLogEventsResponse,
|
package/package.json
CHANGED