Interface CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnFlowPropsMixin
@Stability(Stable)
public static interface CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.appflow.*;
SnowflakeDestinationPropertiesProperty snowflakeDestinationPropertiesProperty = SnowflakeDestinationPropertiesProperty.builder()
.bucketPrefix("bucketPrefix")
.errorHandlingConfig(ErrorHandlingConfigProperty.builder()
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.failOnFirstError(false)
.build())
.intermediateBucketName("intermediateBucketName")
.object("object")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowPropsMixin.SnowflakeDestinationPropertiesPropertystatic final classAn implementation forCfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe object key for the destination bucket in which Amazon AppFlow places the files.default ObjectThe settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake destination.default ObjectThe intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.default StringThe object specified in the Snowflake flow destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketPrefix
The object key for the destination bucket in which Amazon AppFlow places the files.- See Also:
-
getErrorHandlingConfig
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.
ErrorHandlingConfigis a part of the destination connector details.Returns union: either
IResolvableorCfnFlowPropsMixin.ErrorHandlingConfigProperty- See Also:
-
getIntermediateBucketName
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.Returns union: either
StringorIBucketRef- See Also:
-
getObject
The object specified in the Snowflake flow destination.- See Also:
-
builder
@Stability(Stable) static CfnFlowPropsMixin.SnowflakeDestinationPropertiesProperty.Builder builder()
-