@Stability(value=Stable)
public static interface CfnDeliveryStream.BufferingHintsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*;
BufferingHintsProperty bufferingHintsProperty = BufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.BufferingHintsProperty.Builder
A builder for
CfnDeliveryStream.BufferingHintsProperty |
static class |
CfnDeliveryStream.BufferingHintsProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.BufferingHintsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.BufferingHintsProperty.Builder |
builder() |
default Number |
getIntervalInSeconds()
The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination.
|
default Number |
getSizeInMBs()
The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination.
|
@Stability(value=Stable) @Nullable default Number getIntervalInSeconds()
For valid values, see the IntervalInSeconds content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .
@Stability(value=Stable) @Nullable default Number getSizeInMBs()
For valid values, see the SizeInMBs content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .
@Stability(value=Stable) static CfnDeliveryStream.BufferingHintsProperty.Builder builder()
Copyright © 2022. All rights reserved.