Skip to content

Commit

Permalink
fix(aws-kinesisfirehose-s3): Fix type of kinesisFirehoseProps prop.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottRobinson03 committed Aug 31, 2023
1 parent e4b5ce0 commit 0a8a637
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,17 @@ export interface KinesisFirehoseToS3Props {
*
* @default - Default props are used
*/
readonly kinesisFirehoseProps?: kinesisfirehose.CfnDeliveryStreamProps | any;
readonly kinesisFirehoseProps?: Omit<
kinesisfirehose.CfnDeliveryStreamProps,
"extendedS3DestinationConfiguration"
> & {
extendedS3DestinationConfiguration:
| Omit<
kinesisfirehose.CfnDeliveryStream.ExtendedS3DestinationConfigurationProperty,
"bucketArn" | "roleArn"
>
| cdk.IResolvable;
};
/**
* Optional user provided props to override the default props for the CloudWatchLogs LogGroup.
*
Expand Down

0 comments on commit 0a8a637

Please sign in to comment.