interface SnowflakeDestinationPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnFlowPropsMixin_SnowflakeDestinationPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnFlowPropsMixin » SnowflakeDestinationPropertiesProperty |
The properties that are applied when Snowflake is being used as a destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const snowflakeDestinationPropertiesProperty: appflow_mixins.CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty = {
bucketPrefix: 'bucketPrefix',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
intermediateBucketName: 'intermediateBucketName',
object: 'object',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The object key for the destination bucket in which Amazon AppFlow places the files. |
| error | IResolvable | Error | The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination. |
| intermediate | string | The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake. |
| object? | string | The object specified in the Snowflake flow destination. |
bucketPrefix?
Type:
string
(optional)
The object key for the destination bucket in which Amazon AppFlow places the files.
errorHandlingConfig?
Type:
IResolvable | Error
(optional)
The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination.
For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.
intermediateBucketName?
Type:
string
(optional)
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
object?
Type:
string
(optional)
The object specified in the Snowflake flow destination.

.NET
Go
Java
Python
TypeScript