Interface CfnDeliveryStream.BufferingHintsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeliveryStream.BufferingHintsProperty.Jsii$Proxy
Enclosing class:
CfnDeliveryStream

@Stability(Stable) public static interface CfnDeliveryStream.BufferingHintsProperty extends software.amazon.jsii.JsiiSerializable
The BufferingHints property type specifies how Amazon Kinesis Data Firehose (Kinesis Data Firehose) buffers incoming data before delivering it to the destination.

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();
 
  • Method Details