aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.BufferingHintsProperty

interface BufferingHintsProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.BufferingHintsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_BufferingHintsProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.BufferingHintsProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.BufferingHintsProperty
TypeScript aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » BufferingHintsProperty

The BufferingHints property type specifies how Amazon Kinesis Data Firehose (Kinesis Data Firehose) buffers incoming data before delivering it to the destination.

The first buffer condition that is satisfied triggers Kinesis Data Firehose to deliver the data.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const bufferingHintsProperty: kinesisfirehose.CfnDeliveryStream.BufferingHintsProperty = {
  intervalInSeconds: 123,
  sizeInMBs: 123,
};

Properties

NameTypeDescription
intervalInSeconds?numberThe length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination.
sizeInMBs?numberThe size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination.

intervalInSeconds?

Type: number (optional)

The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination.

For valid values, see the IntervalInSeconds content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .


sizeInMBs?

Type: number (optional)

The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination.

For valid values, see the SizeInMBs content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .