constructor()

in lib/kinesis/data-lake-ingestion-stream-construct.ts [16:26]


    constructor(scope: cdk.Construct, id: string, props: DataLakeIngestionStreamProps) {
        super(scope, id);

        this.stream = new kinesis.Stream(this, 'DataLakeIngestStream', {
            streamName: props.name,
            shardCount: props.shardCount
        });



    }