Skip to content

Instantly share code, notes, and snippets.

@boricic
Created January 14, 2020 14:53
Show Gist options
  • Save boricic/4125d9cd0115387aa5e8bf976aaa457c to your computer and use it in GitHub Desktop.
Save boricic/4125d9cd0115387aa5e8bf976aaa457c to your computer and use it in GitHub Desktop.
import firehose = require('@aws-cdk/aws-kinesisfirehose');
let myDs = new firehose.CfnDeliveryStream(this, 'MyDeliveryStream', {
deliveryStreamName: 'MyDeliveryStream',
deliveryStreamType: 'DirectPut',
s3DestinationConfiguration: new firehose.CfnDeliveryStream.S3DestinationConfigurationProperty()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment