You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create a KinesisFirehose to an existing S3 bucket. I would like to be able to pass the existing bucket (not created via CDK or CloudFormation) to the KinesisFirehoseToS3 constructor in the KinesisFirehoseToS3Props. I am looking the bucket up using Bucket.fromBucketName which returns an IBucket rather than a Bucket. Since the existingBucketObj attribute of KinesisFirehoseToS3Props is of type Bucket, I cannot pass the IBucket reference to this construct.
It appears that the implementation of KinesisFirehoseToS3 does not make use of any features of the existingBucketObj property that are not in IBucket. Would it be possible to change the type of the existingBucketObj property to Ibucket?
The text was updated successfully, but these errors were encountered:
cfredhart@ the update has been pushed out in the latest release v1.57.0, for proof see the integegration test case here and the resulting CFN template here
I am trying to create a KinesisFirehose to an existing S3 bucket. I would like to be able to pass the existing bucket (not created via CDK or CloudFormation) to the
KinesisFirehoseToS3
constructor in theKinesisFirehoseToS3Props
. I am looking the bucket up usingBucket.fromBucketName
which returns anIBucket
rather than aBucket
. Since theexistingBucketObj
attribute ofKinesisFirehoseToS3Props
is of typeBucket
, I cannot pass theIBucket
reference to this construct.It appears that the implementation of
KinesisFirehoseToS3
does not make use of any features of theexistingBucketObj
property that are not inIBucket
. Would it be possible to change the type of theexistingBucketObj
property toIbucket
?The text was updated successfully, but these errors were encountered: