Replies: 3 comments
-
I have the same problem, help please !!!! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Same Here! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @DnielPkZ , you would have to use L1 construct to use have this properoty as mentioned in the shared sample code - const extendedS3DestinationConfigurationProperty: kinesisfirehose.CfnDeliveryStream.ExtendedS3DestinationConfigurationProperty = {
bucketArn: 'arn:aws:s3:::my-bucket',
roleArn: 'arn:aws:iam::123456789012:role/firehose_delivery_role',
bufferingHints: {
intervalInSeconds: 300,
sizeInMBs: 5
},
compressionFormat: 'UNCOMPRESSED',
prefix: 'myFolder/',
errorOutputPrefix: 'myErrorFolder/',
cloudWatchLoggingOptions: {
enabled: true,
logGroupName: 'string',
logStreamName: 'string'
},
customTimeZone: 'Etc/UTC',
};
const kineticfirehoseobj = new kinesisfirehose.CfnDeliveryStream(this, 'MyDeliveryStream', {
deliveryStreamType: 'DirectPut',
extendedS3DestinationConfiguration: extendedS3DestinationConfigurationProperty,
}); I assume this is what you are trying to do. Hope this works. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, when reviewing this documentation, there is the "CustomTimeZone" property of the properties of this interface:
ExtendedS3DestinationConfigurationProperty
When checking the interface in the repository, it does not exist.
interface ExtendedS3DestinationConfigurationProperty
It is not found and therefore the property cannot be used.
What can I use to replace this property or use this same one in some way?
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.ExtendedS3DestinationConfigurationProperty.html#customtimezone
version cdk: 2.97.1
AWS CDK official repository interface:
CUSTOMTIMEZONE DOES NOT EXIST
interface ExtendedS3DestinationConfigurationProperty { /** * The Amazon Resource Name (ARN) of the Amazon S3 bucket. * * For constraints, see [ExtendedS3DestinationConfiguration](https://docs.aws.amazon.com/firehose/latest/APIReference/API_ExtendedS3DestinationConfiguration.html) in the *Amazon Kinesis Data Firehose API Reference* . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn */ readonly bucketArn: string; /** * The buffering option. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bufferinghints */ readonly bufferingHints?: CfnDeliveryStream.BufferingHintsProperty | cdk.IResolvable; /** * The Amazon CloudWatch logging options for your delivery stream. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-cloudwatchloggingoptions */ readonly cloudWatchLoggingOptions?: CfnDeliveryStream.CloudWatchLoggingOptionsProperty | cdk.IResolvable; /** * The compression format. * * If no value is specified, the default is
UNCOMPRESSED. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat */ readonly compressionFormat?: string; /** * The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-dataformatconversionconfiguration */ readonly dataFormatConversionConfiguration?: CfnDeliveryStream.DataFormatConversionConfigurationProperty | cdk.IResolvable; /** * The configuration of the dynamic partitioning mechanism that creates targeted data sets from the streaming data by partitioning it based on partition keys. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-dynamicpartitioningconfiguration */ readonly dynamicPartitioningConfiguration?: CfnDeliveryStream.DynamicPartitioningConfigurationProperty | cdk.IResolvable; /** * The encryption configuration for the Kinesis Data Firehose delivery stream. * * The default value is
NoEncryption. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-encryptionconfiguration */ readonly encryptionConfiguration?: CfnDeliveryStream.EncryptionConfigurationProperty | cdk.IResolvable; /** * A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. * * This prefix appears immediately following the bucket name. For information about how to specify this prefix, see [Custom Prefixes for Amazon S3 Objects](https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html) . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-erroroutputprefix */ readonly errorOutputPrefix?: string; /** * The
YYYY/MM/DD/HHtime format prefix is automatically used for delivered Amazon S3 files. * * For more information, see [ExtendedS3DestinationConfiguration](https://docs.aws.amazon.com/firehose/latest/APIReference/API_ExtendedS3DestinationConfiguration.html) in the *Amazon Kinesis Data Firehose API Reference* . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix */ readonly prefix?: string; /** * The data processing configuration for the Kinesis Data Firehose delivery stream. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-processingconfiguration */ readonly processingConfiguration?: cdk.IResolvable | CfnDeliveryStream.ProcessingConfigurationProperty; /** * The Amazon Resource Name (ARN) of the AWS credentials. * * For constraints, see [ExtendedS3DestinationConfiguration](https://docs.aws.amazon.com/firehose/latest/APIReference/API_ExtendedS3DestinationConfiguration.html) in the *Amazon Kinesis Data Firehose API Reference* . * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn */ readonly roleArn: string; /** * The configuration for backup in Amazon S3. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupconfiguration */ readonly s3BackupConfiguration?: cdk.IResolvable | CfnDeliveryStream.S3DestinationConfigurationProperty; /** * The Amazon S3 backup mode. * * After you create a delivery stream, you can update it to enable Amazon S3 backup if it is disabled. If backup is enabled, you can't update the delivery stream to disable it. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode */ readonly s3BackupMode?: string; }
Beta Was this translation helpful? Give feedback.
All reactions