io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlDestination Maven / Gradle / Ivy
package io.github.cdklabs.cdk.appflow;
/**
* (experimental) Represents a destination for the Amazon RDS for PostgreSQL connector.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.164Z")
@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.AmazonRdsForPostgreSqlDestination")
public class AmazonRdsForPostgreSqlDestination extends software.amazon.jsii.JsiiObject implements io.github.cdklabs.cdk.appflow.IDestination {
protected AmazonRdsForPostgreSqlDestination(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected AmazonRdsForPostgreSqlDestination(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* (experimental) Creates a new instance of the AmazonRdsForPostgreSqlDestination.
*
* @param props
- properties of the destination.
This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public AmazonRdsForPostgreSqlDestination(final @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlDestinationProps 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 flow 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 flow) {
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(flow, "flow 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.AmazonRdsForPostgreSqlDestination}.
*/
@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.AmazonRdsForPostgreSqlDestinationProps.Builder props;
private Builder() {
this.props = new io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlDestinationProps.Builder();
}
/**
* (experimental) The destination object table to write to.
*
* @return {@code this}
* @param object The destination object table to write to. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder object(final io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlObject object) {
this.props.object(object);
return this;
}
/**
* (experimental) The profile to use with the destination.
*
* @return {@code this}
* @param profile The profile to use with the destination. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder profile(final io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlConnectorProfile profile) {
this.props.profile(profile);
return this;
}
/**
* (experimental) The Amazon AppFlow Api Version.
*
* @return {@code this}
* @param apiVersion The Amazon AppFlow Api Version. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder apiVersion(final java.lang.String apiVersion) {
this.props.apiVersion(apiVersion);
return this;
}
/**
* (experimental) The settings that determine how Amazon AppFlow handles an error when placing data in the 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 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.AmazonRdsForPostgreSqlDestination}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlDestination build() {
return new io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlDestination(
this.props.build()
);
}
}
}