Interface CfnFlowPropsMixin.ISnowflakeDestinationPropertiesProperty
The properties that are applied when Snowflake is being used as a destination.
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnFlowPropsMixin.ISnowflakeDestinationPropertiesProperty
Syntax (vb)
Public Interface CfnFlowPropsMixin.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.Mixins.Preview.AWS.AppFlow.Mixins;
var snowflakeDestinationPropertiesProperty = new SnowflakeDestinationPropertiesProperty {
BucketPrefix = "bucketPrefix",
ErrorHandlingConfig = new ErrorHandlingConfigProperty {
BucketName = "bucketName",
BucketPrefix = "bucketPrefix",
FailOnFirstError = false
},
IntermediateBucketName = "intermediateBucketName",
Object = "object"
};
Synopsis
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. |
Properties
BucketPrefix
The object key for the destination bucket in which Amazon AppFlow places the files.
string? BucketPrefix { get; }
Property Value
Remarks
ErrorHandlingConfig
The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination.
object? ErrorHandlingConfig { get; }
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.
Type union: either IResolvable or CfnFlowPropsMixin.IErrorHandlingConfigProperty
IntermediateBucketName
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
string? IntermediateBucketName { get; }
Property Value
Remarks
Object
The object specified in the Snowflake flow destination.
string? Object { get; }