Interface SnowflakeBufferingHints.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnowflakeBufferingHints.Builder,SnowflakeBufferingHints>,SdkBuilder<SnowflakeBufferingHints.Builder,SnowflakeBufferingHints>,SdkPojo
- Enclosing class:
- SnowflakeBufferingHints
public static interface SnowflakeBufferingHints.Builder extends SdkPojo, CopyableBuilder<SnowflakeBufferingHints.Builder,SnowflakeBufferingHints>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnowflakeBufferingHints.BuilderintervalInSeconds(Integer intervalInSeconds)Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.SnowflakeBufferingHints.BuildersizeInMBs(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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
sizeInMBs
SnowflakeBufferingHints.Builder sizeInMBs(Integer sizeInMBs)
Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 128.
- Parameters:
sizeInMBs- Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 128.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
intervalInSeconds
SnowflakeBufferingHints.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 0.
- Parameters:
intervalInSeconds- Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 0.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-