interface SnowflakeBufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_SnowflakeBufferingHintsProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SnowflakeBufferingHintsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const snowflakeBufferingHintsProperty: kinesisfirehose_mixins.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