Skip to content

Commit 0e7d36a

Browse files
committed
chore: remove no use props
1 parent 589d453 commit 0e7d36a

File tree

2 files changed

+1
-16
lines changed

2 files changed

+1
-16
lines changed

API.md

Lines changed: 0 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ import * as logs from 'aws-cdk-lib/aws-logs';
66
import { Construct } from 'constructs';
77
import { ParserFunction } from './funcs/parser-function';
88

9-
export interface LogStreamEventTriggerProps {
10-
}
11-
129
export class LogStreamEventTrigger extends Construct {
1310

1411
public readonly logStreamSubscriptionFilterDestinationFunction: lambda.IFunction;
1512

16-
constructor(scope: Construct, id: string /** props?: LogStreamEventTriggerProps */ ) {
13+
constructor(scope: Construct, id: string) {
1714
super(scope, id);
1815

1916
// 👇 Get current account & region

0 commit comments

Comments
 (0)