interface SnowflakeBufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_SnowflakeBufferingHintsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » SnowflakeBufferingHintsProperty |
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 { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const snowflakeBufferingHintsProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty = {
intervalInSeconds: 123,
sizeInMBs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| interval | number | Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. |
| size | number | Buffer incoming data to the specified size, in MBs, before delivering it to the destination. |
intervalInSeconds?
Type:
number
(optional)
Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination.
The default value is 0.
sizeInMBs?
Type:
number
(optional)
Buffer incoming data to the specified size, in MBs, before delivering it to the destination.
The default value is 128.

.NET
Go
Java
Python
TypeScript