Interface CfnDeliveryStream.SplunkBufferingHintsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.SplunkBufferingHintsProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.SplunkBufferingHintsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kinesisfirehose.*; SplunkBufferingHintsProperty splunkBufferingHintsProperty = SplunkBufferingHintsProperty.builder() .intervalInSeconds(123) .sizeInMBs(123) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDeliveryStream.SplunkBufferingHintsProperty
static final class
An implementation forCfnDeliveryStream.SplunkBufferingHintsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIntervalInSeconds
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.The default value is 60 (1 minute).
- See Also:
-
getSizeInMBs
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.The default value is 5.
- See Also:
-
builder
-