interface SplunkBufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.SplunkBufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_SplunkBufferingHintsProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SplunkBufferingHintsProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SplunkBufferingHintsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » SplunkBufferingHintsProperty |
The buffering options.
If no value is specified, the default values for Splunk are used.
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 splunkBufferingHintsProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.SplunkBufferingHintsProperty = {
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 60 (1 minute).
sizeInMBs?
Type:
number
(optional)
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.
The default value is 5.

.NET
Go
Java
Python
TypeScript