Interface SplunkBufferingHints.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<SplunkBufferingHints.Builder,SplunkBufferingHints>
,SdkBuilder<SplunkBufferingHints.Builder,SplunkBufferingHints>
,SdkPojo
- Enclosing class:
- SplunkBufferingHints
public static interface SplunkBufferingHints.Builder extends SdkPojo, CopyableBuilder<SplunkBufferingHints.Builder,SplunkBufferingHints>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SplunkBufferingHints.Builder
intervalInSeconds(Integer intervalInSeconds)
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.SplunkBufferingHints.Builder
sizeInMBs(Integer sizeInMBs)
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
intervalInSeconds
SplunkBufferingHints.Builder intervalInSeconds(Integer intervalInSeconds)
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 60 (1 minute).
- Parameters:
intervalInSeconds
- Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 60 (1 minute).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sizeInMBs
SplunkBufferingHints.Builder sizeInMBs(Integer sizeInMBs)
Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
- Parameters:
sizeInMBs
- Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-