Created
December 12, 2022 21:18
-
-
Save fsanal/277f3803c37c52e051cd7181c5ad1b1a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public KinesisPipeline(final Construct scope, final String id, final KinesisPipelineProps props) { | |
super(scope, id); | |
firehoseDeliveryRole = props.getFirehoseDeliveryRole(); | |
lambdaExecutionRole = props.getLambdaExecutionRole(); | |
streamKey = props.getStreamKey(); | |
catalogId = props.getCatalogId(); | |
glueDatabaseName = props.getGlueDatabaseName(); | |
glueTableName = props.getGlueTableName(); | |
streamId = props.getStreamId(); | |
streamName = props.getStreamName(); | |
transformFunction = props.getTransformFunction(); | |
deliveryStreamPrefix = props.getDeliveryStreamPrefix(); | |
deliveryStreamErrorPrefix = props.getDeliveryStreamErrorPrefix(); | |
deliveryStreamParquetPrefix = props.getDeliveryStreamParquetPrefix(); | |
deliveryStreamParquetErrorPrefix = props.getDeliveryStreamParquetErrorPrefix(); | |
platformResourceName = props.getPlatformResourceName(); | |
autoPartitionLambda = props.getAutoPartitionLambda(); | |
createStream(); | |
createDeliveryStream(); | |
createDeliveryStreamParquetGlue(); | |
createAutoPartitionLambda(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment