aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.ElasticsearchBufferingHintsProperty

interface ElasticsearchBufferingHintsProperty

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

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

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

ElasticsearchBufferingHints is the property type for the BufferingHints property of the Amazon Kinesis Data Firehose DeliveryStream ElasticsearchDestinationConfiguration property type.

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 elasticsearchBufferingHintsProperty: kinesisfirehose.CfnDeliveryStream.ElasticsearchBufferingHintsProperty = {
  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 .