aws-cdk-lib.aws_appflow.CfnFlow.SnowflakeDestinationPropertiesProperty

interface SnowflakeDestinationPropertiesProperty

LanguageType name
.NETAmazon.CDK.AWS.AppFlow.CfnFlow.SnowflakeDestinationPropertiesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnFlow_SnowflakeDestinationPropertiesProperty
Javasoftware.amazon.awscdk.services.appflow.CfnFlow.SnowflakeDestinationPropertiesProperty
Pythonaws_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

NameTypeDescription
intermediateBucketNamestringThe intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
objectstringThe object specified in the Snowflake flow destination.
bucketPrefix?stringThe object key for the destination bucket in which Amazon AppFlow places the files.
errorHandlingConfig?IResolvable | ErrorHandlingConfigPropertyThe 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 | ErrorHandlingConfigProperty (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.