interface SnowflakeDestinationPropertiesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnFlow.SnowflakeDestinationPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_SnowflakeDestinationPropertiesProperty |
Java | software.amazon.awscdk.services.appflow.CfnFlow.SnowflakeDestinationPropertiesProperty |
Python | aws_cdk.aws_appflow.CfnFlow.SnowflakeDestinationPropertiesProperty |
TypeScript | aws-cdk-lib » aws_appflow » CfnFlow » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const snowflakeDestinationPropertiesProperty: appflow.CfnFlow.SnowflakeDestinationPropertiesProperty = {
intermediateBucketName: 'intermediateBucketName',
object: 'object',
// the properties below are optional
bucketPrefix: 'bucketPrefix',
errorHandlingConfig: {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
failOnFirstError: false,
},
};
Properties
Name | Type | Description |
---|---|---|
intermediate | string | The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake. |
object | string | The object specified in the Snowflake flow destination. |
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. |
intermediateBucketName
Type:
string
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
object
Type:
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.