Skip to content

Commit 032b70c

Browse files
RomainMullernija-at
authored andcommitted
fix(lambda-event-sources): add missing export of streams.ts (#4362)
* fix(lambda-event-sources): add missing export of streams.ts Fixes #4352
1 parent c8f0bcf commit 032b70c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
export * from './api';
12
export * from './dynamodb';
23
export * from './kinesis';
3-
export * from './sqs';
44
export * from './s3';
55
export * from './sns';
6-
export * from './api';
6+
export * from './stream';
7+
export * from './sqs';

packages/@aws-cdk/aws-lambda-event-sources/lib/stream.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import lambda = require('@aws-cdk/aws-lambda');
22
import {Duration} from '@aws-cdk/core';
33

44
/**
5-
* @internal
5+
* The set of properties for event sources that follow the streaming model,
6+
* such as, Dynamo and Kinesis.
67
*/
78
export interface StreamEventSourceProps {
89
/**
@@ -32,8 +33,6 @@ export interface StreamEventSourceProps {
3233

3334
/**
3435
* Use an stream as an event source for AWS Lambda.
35-
*
36-
* @internal
3736
*/
3837
export abstract class StreamEventSource implements lambda.IEventSource {
3938
protected constructor(protected readonly props: StreamEventSourceProps) {

0 commit comments

Comments
 (0)