interface BufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.BufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_BufferingHintsProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.BufferingHintsProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| interval | number | The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination. |
| size | number | The 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 .

.NET
Go
Java
Python
TypeScript