Interface CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
@Stability(Stable)
public static interface CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty
extends software.amazon.jsii.JsiiSerializable
Describes the buffering to perform before delivering data to the Snowflake destination.
If you do not specify any value, Firehose uses the default values.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.*;
SnowflakeBufferingHintsProperty snowflakeBufferingHintsProperty = SnowflakeBufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty -
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 0.
- See Also:
-
getSizeInMBs
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.The default value is 128.
- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty.Builder builder()
-