aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty

interface AmazonopensearchserviceBufferingHintsProperty

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

Describes the buffering to perform before delivering data to the Amazon OpenSearch Service destination.

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 amazonopensearchserviceBufferingHintsProperty: kinesisfirehose.CfnDeliveryStream.AmazonopensearchserviceBufferingHintsProperty = {
  intervalInSeconds: 123,
  sizeInMBs: 123,
};

Properties

NameTypeDescription
intervalInSeconds?numberBuffer incoming data for the specified period of time, in seconds, before delivering it to the destination.
sizeInMBs?numberBuffer incoming data to the specified size, in MBs, before delivering it to the destination.

intervalInSeconds?

Type: number (optional)

Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.

The default value is 300 (5 minutes).


sizeInMBs?

Type: number (optional)

Buffer incoming data to the specified size, in MBs, before delivering it to the destination.

The default value is 5. We recommend setting this parameter to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.