interface AmazonOpenSearchServerlessBufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.AmazonOpenSearchServerlessBufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_AmazonOpenSearchServerlessBufferingHintsProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.AmazonOpenSearchServerlessBufferingHintsProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.AmazonOpenSearchServerlessBufferingHintsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » AmazonOpenSearchServerlessBufferingHintsProperty |
Describes the buffering to perform before delivering data to the Serverless offering for 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const amazonOpenSearchServerlessBufferingHintsProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.AmazonOpenSearchServerlessBufferingHintsProperty = {
intervalInSeconds: 123,
sizeInMBs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| interval | number | Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. |
| size | number | Buffer 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 Firehose stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec, the value should be 10 MB or higher.

.NET
Go
Java
Python
TypeScript