interface SnowflakeBufferingHintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.SnowflakeBufferingHintsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_SnowflakeBufferingHintsProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.SnowflakeBufferingHintsProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.SnowflakeBufferingHintsProperty |
TypeScript | aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » 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-lib';
const snowflakeBufferingHintsProperty: kinesisfirehose.CfnDeliveryStream.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