public static interface CfnDeliveryStream.BufferingHintsProperty
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 java.lang.Number |
getIntervalInSeconds()
The length of time, in seconds, that Kinesis Data Firehose buffers incoming data before delivering it to the destination.
|
default java.lang.Number |
getSizeInMBs()
The size of the buffer, in MBs, that Kinesis Data Firehose uses for incoming data before delivering it to the destination.
|
default java.lang.Number getIntervalInSeconds()
For valid values, see the IntervalInSeconds
content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .
default java.lang.Number getSizeInMBs()
For valid values, see the SizeInMBs
content for the BufferingHints data type in the Amazon Kinesis Data Firehose API Reference .
static CfnDeliveryStream.BufferingHintsProperty.Builder builder()