package awsappflow // 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 "github.com/aws/aws-cdk-go/awscdk" // // snowflakeDestinationPropertiesProperty := &SnowflakeDestinationPropertiesProperty{ // IntermediateBucketName: jsii.String("intermediateBucketName"), // Object: jsii.String("object"), // // // the properties below are optional // BucketPrefix: jsii.String("bucketPrefix"), // ErrorHandlingConfig: &ErrorHandlingConfigProperty{ // BucketName: jsii.String("bucketName"), // BucketPrefix: jsii.String("bucketPrefix"), // FailOnFirstError: jsii.Boolean(false), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html // type CfnFlow_SnowflakeDestinationPropertiesProperty struct { // The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-intermediatebucketname // IntermediateBucketName *string `field:"required" json:"intermediateBucketName" yaml:"intermediateBucketName"` // The object specified in the Snowflake flow destination. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-object // Object *string `field:"required" json:"object" yaml:"object"` // The object key for the destination bucket in which Amazon AppFlow places the files. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-bucketprefix // BucketPrefix *string `field:"optional" json:"bucketPrefix" yaml:"bucketPrefix"` // 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. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-errorhandlingconfig // ErrorHandlingConfig interface{} `field:"optional" json:"errorHandlingConfig" yaml:"errorHandlingConfig"` }