Class CfnFlow.SnowflakeDestinationPropertiesProperty
The properties that are applied when Snowflake is being used as a destination.
Implements
Inherited Members
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
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
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
Remarks
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
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.
IntermediateBucketName
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
public string IntermediateBucketName { get; set; }
Property Value
Remarks
Object
The object specified in the Snowflake flow destination.
public string Object { get; set; }