Show / Hide Table of Contents

Class CfnFlow.SnowflakeDestinationPropertiesProperty

The properties that are applied when Snowflake is being used as a destination.

Inheritance
object
CfnFlow.SnowflakeDestinationPropertiesProperty
Implements
CfnFlow.ISnowflakeDestinationPropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.SnowflakeDestinationPropertiesProperty : CfnFlow.ISnowflakeDestinationPropertiesProperty
Syntax (vb)
Public Class CfnFlow.SnowflakeDestinationPropertiesProperty Implements CfnFlow.ISnowflakeDestinationPropertiesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppFlow;

             var snowflakeDestinationPropertiesProperty = new SnowflakeDestinationPropertiesProperty {
                 IntermediateBucketName = "intermediateBucketName",
                 Object = "object",

                 // the properties below are optional
                 BucketPrefix = "bucketPrefix",
                 ErrorHandlingConfig = new ErrorHandlingConfigProperty {
                     BucketName = "bucketName",
                     BucketPrefix = "bucketPrefix",
                     FailOnFirstError = false
                 }
             };

Synopsis

Constructors

SnowflakeDestinationPropertiesProperty()

The properties that are applied when Snowflake is being used as a destination.

Properties

BucketPrefix

The object key for the destination bucket in which Amazon AppFlow places the files.

ErrorHandlingConfig

The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination.

IntermediateBucketName

The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.

Object

The object specified in the Snowflake flow destination.

Constructors

SnowflakeDestinationPropertiesProperty()

The properties that are applied when Snowflake is being used as a destination.

public SnowflakeDestinationPropertiesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppFlow;

             var snowflakeDestinationPropertiesProperty = new SnowflakeDestinationPropertiesProperty {
                 IntermediateBucketName = "intermediateBucketName",
                 Object = "object",

                 // the properties below are optional
                 BucketPrefix = "bucketPrefix",
                 ErrorHandlingConfig = new ErrorHandlingConfigProperty {
                     BucketName = "bucketName",
                     BucketPrefix = "bucketPrefix",
                     FailOnFirstError = false
                 }
             };

Properties

BucketPrefix

The object key for the destination bucket in which Amazon AppFlow places the files.

public string? BucketPrefix { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-bucketprefix

ErrorHandlingConfig

The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination.

public object? ErrorHandlingConfig { get; set; }
Property Value

object

Remarks

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

IntermediateBucketName

The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.

public string IntermediateBucketName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-intermediatebucketname

Object

The object specified in the Snowflake flow destination.

public string Object { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-snowflakedestinationproperties.html#cfn-appflow-flow-snowflakedestinationproperties-object

Implements

CfnFlow.ISnowflakeDestinationPropertiesProperty
Back to top Generated by DocFX