File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
packages/@aws-cdk/aws-lambda-event-sources/lib Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change
1
+ export * from './api' ;
1
2
export * from './dynamodb' ;
2
3
export * from './kinesis' ;
3
- export * from './sqs' ;
4
4
export * from './s3' ;
5
5
export * from './sns' ;
6
- export * from './api' ;
6
+ export * from './stream' ;
7
+ export * from './sqs' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import lambda = require('@aws-cdk/aws-lambda');
2
2
import { Duration } from '@aws-cdk/core' ;
3
3
4
4
/**
5
- * @internal
5
+ * The set of properties for event sources that follow the streaming model,
6
+ * such as, Dynamo and Kinesis.
6
7
*/
7
8
export interface StreamEventSourceProps {
8
9
/**
@@ -32,8 +33,6 @@ export interface StreamEventSourceProps {
32
33
33
34
/**
34
35
* Use an stream as an event source for AWS Lambda.
35
- *
36
- * @internal
37
36
*/
38
37
export abstract class StreamEventSource implements lambda . IEventSource {
39
38
protected constructor ( protected readonly props : StreamEventSourceProps ) {
You can’t perform that action at this time.
0 commit comments