io.github.cdklabs.cdk.appflow.SnowflakeDestination Maven / Gradle / Ivy
package io.github.cdklabs.cdk.appflow;
/**
* (experimental) A Snowflake destination.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.286Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.SnowflakeDestination")
public class SnowflakeDestination extends software.amazon.jsii.JsiiObject implements io.github.cdklabs.cdk.appflow.IDestination {
protected SnowflakeDestination(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected SnowflakeDestination(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* @param props This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public SnowflakeDestination(final @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.SnowflakeDestinationProps props) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(props, "props is required") });
}
/**
* @param scope This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.appflow.CfnFlow.DestinationFlowConfigProperty bind(final @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.IFlow scope) {
return software.amazon.jsii.Kernel.call(this, "bind", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.appflow.CfnFlow.DestinationFlowConfigProperty.class), new Object[] { java.util.Objects.requireNonNull(scope, "scope is required") });
}
/**
* (experimental) The AppFlow type of the connector that this source is implemented for.
*/
@Override
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.ConnectorType getConnectorType() {
return software.amazon.jsii.Kernel.get(this, "connectorType", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.ConnectorType.class));
}
/**
* (experimental) A fluent builder for {@link io.github.cdklabs.cdk.appflow.SnowflakeDestination}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
/**
* @return a new instance of {@link Builder}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static Builder create() {
return new Builder();
}
private final io.github.cdklabs.cdk.appflow.SnowflakeDestinationProps.Builder props;
private Builder() {
this.props = new io.github.cdklabs.cdk.appflow.SnowflakeDestinationProps.Builder();
}
/**
* (experimental) A Snowflake table object (optionally with the schema).
*
* @return {@code this}
* @param object A Snowflake table object (optionally with the schema). This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder object(final io.github.cdklabs.cdk.appflow.SnowflakeDestinationObject object) {
this.props.object(object);
return this;
}
/**
* (experimental) A Snowflake connector profile instance.
*
* @return {@code this}
* @param profile A Snowflake connector profile instance. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder profile(final io.github.cdklabs.cdk.appflow.SnowflakeConnectorProfile profile) {
this.props.profile(profile);
return this;
}
/**
* (experimental) The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce 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.
*
* @return {@code this}
* @param errorHandling The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder errorHandling(final io.github.cdklabs.cdk.appflow.ErrorHandlingConfiguration errorHandling) {
this.props.errorHandling(errorHandling);
return this;
}
/**
* @return a newly built instance of {@link io.github.cdklabs.cdk.appflow.SnowflakeDestination}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public io.github.cdklabs.cdk.appflow.SnowflakeDestination build() {
return new io.github.cdklabs.cdk.appflow.SnowflakeDestination(
this.props.build()
);
}
}
}