All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.cdklabs.cdk.appflow.RedshiftDestination Maven / Gradle / Ivy

The newest version!
package io.github.cdklabs.cdk.appflow;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.266Z")
@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.RedshiftDestination")
public class RedshiftDestination extends software.amazon.jsii.JsiiObject implements io.github.cdklabs.cdk.appflow.IDestination {

    protected RedshiftDestination(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected RedshiftDestination(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 RedshiftDestination(final @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.RedshiftDestinationProps 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.RedshiftDestination}.
     */
    @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.RedshiftDestinationProps.Builder props;

        private Builder() {
            this.props = new io.github.cdklabs.cdk.appflow.RedshiftDestinationProps.Builder();
        }

        /**
         * (experimental) A Redshift table object (optionally with the schema).
         * 

* @return {@code this} * @param object A Redshift 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.RedshiftDestinationObject object) { this.props.object(object); return this; } /** * (experimental) An instance of the. *

* @return {@code this} * @param profile An instance of the. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder profile(final io.github.cdklabs.cdk.appflow.RedshiftConnectorProfile 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.RedshiftDestination}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public io.github.cdklabs.cdk.appflow.RedshiftDestination build() { return new io.github.cdklabs.cdk.appflow.RedshiftDestination( this.props.build() ); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy