io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleConnectorProfileProps Maven / Gradle / Ivy
package io.github.cdklabs.cdk.appflow;
/**
* (experimental) Properties for the JdbcSmallDataScaleConnectorProfile.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.250Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.JdbcSmallDataScaleConnectorProfileProps")
@software.amazon.jsii.Jsii.Proxy(JdbcSmallDataScaleConnectorProfileProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface JdbcSmallDataScaleConnectorProfileProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.appflow.ConnectorProfileProps {
/**
* (experimental) The auth settings for the profile.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings getBasicAuth();
/**
* (experimental) The name of the database.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getDatabase();
/**
* (experimental) The driver for the database.
*
* Effectively specifies the type of database.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.JdbcDriver getDriver();
/**
* (experimental) The hostname of the database to interact with.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getHostname();
/**
* (experimental) The database communication port.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.Number getPort();
/**
* @return a {@link Builder} of {@link JdbcSmallDataScaleConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link JdbcSmallDataScaleConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings basicAuth;
java.lang.String database;
io.github.cdklabs.cdk.appflow.JdbcDriver driver;
java.lang.String hostname;
java.lang.Number port;
software.amazon.awscdk.services.kms.IKey key;
java.lang.String name;
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getBasicAuth}
* @param basicAuth The auth settings for the profile. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder basicAuth(io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings basicAuth) {
this.basicAuth = basicAuth;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getDatabase}
* @param database The name of the database. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder database(java.lang.String database) {
this.database = database;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getDriver}
* @param driver The driver for the database. This parameter is required.
* Effectively specifies the type of database.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder driver(io.github.cdklabs.cdk.appflow.JdbcDriver driver) {
this.driver = driver;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getHostname}
* @param hostname The hostname of the database to interact with. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder hostname(java.lang.String hostname) {
this.hostname = hostname;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getPort}
* @param port The database communication port. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder port(java.lang.Number port) {
this.port = port;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getKey}
* @param key TODO: think if this should be here as not all connector profiles have that.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder key(software.amazon.awscdk.services.kms.IKey key) {
this.key = key;
return this;
}
/**
* Sets the value of {@link JdbcSmallDataScaleConnectorProfileProps#getName}
* @param name the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder name(java.lang.String name) {
this.name = name;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link JdbcSmallDataScaleConnectorProfileProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public JdbcSmallDataScaleConnectorProfileProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link JdbcSmallDataScaleConnectorProfileProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements JdbcSmallDataScaleConnectorProfileProps {
private final io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings basicAuth;
private final java.lang.String database;
private final io.github.cdklabs.cdk.appflow.JdbcDriver driver;
private final java.lang.String hostname;
private final java.lang.Number port;
private final software.amazon.awscdk.services.kms.IKey key;
private final java.lang.String name;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.basicAuth = software.amazon.jsii.Kernel.get(this, "basicAuth", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings.class));
this.database = software.amazon.jsii.Kernel.get(this, "database", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.driver = software.amazon.jsii.Kernel.get(this, "driver", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.JdbcDriver.class));
this.hostname = software.amazon.jsii.Kernel.get(this, "hostname", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.port = software.amazon.jsii.Kernel.get(this, "port", software.amazon.jsii.NativeType.forClass(java.lang.Number.class));
this.key = software.amazon.jsii.Kernel.get(this, "key", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.kms.IKey.class));
this.name = software.amazon.jsii.Kernel.get(this, "name", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.basicAuth = java.util.Objects.requireNonNull(builder.basicAuth, "basicAuth is required");
this.database = java.util.Objects.requireNonNull(builder.database, "database is required");
this.driver = java.util.Objects.requireNonNull(builder.driver, "driver is required");
this.hostname = java.util.Objects.requireNonNull(builder.hostname, "hostname is required");
this.port = java.util.Objects.requireNonNull(builder.port, "port is required");
this.key = builder.key;
this.name = builder.name;
}
@Override
public final io.github.cdklabs.cdk.appflow.JdbcSmallDataScaleBasicAuthSettings getBasicAuth() {
return this.basicAuth;
}
@Override
public final java.lang.String getDatabase() {
return this.database;
}
@Override
public final io.github.cdklabs.cdk.appflow.JdbcDriver getDriver() {
return this.driver;
}
@Override
public final java.lang.String getHostname() {
return this.hostname;
}
@Override
public final java.lang.Number getPort() {
return this.port;
}
@Override
public final software.amazon.awscdk.services.kms.IKey getKey() {
return this.key;
}
@Override
public final java.lang.String getName() {
return this.name;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("basicAuth", om.valueToTree(this.getBasicAuth()));
data.set("database", om.valueToTree(this.getDatabase()));
data.set("driver", om.valueToTree(this.getDriver()));
data.set("hostname", om.valueToTree(this.getHostname()));
data.set("port", om.valueToTree(this.getPort()));
if (this.getKey() != null) {
data.set("key", om.valueToTree(this.getKey()));
}
if (this.getName() != null) {
data.set("name", om.valueToTree(this.getName()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-appflow.JdbcSmallDataScaleConnectorProfileProps"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
JdbcSmallDataScaleConnectorProfileProps.Jsii$Proxy that = (JdbcSmallDataScaleConnectorProfileProps.Jsii$Proxy) o;
if (!basicAuth.equals(that.basicAuth)) return false;
if (!database.equals(that.database)) return false;
if (!driver.equals(that.driver)) return false;
if (!hostname.equals(that.hostname)) return false;
if (!port.equals(that.port)) return false;
if (this.key != null ? !this.key.equals(that.key) : that.key != null) return false;
return this.name != null ? this.name.equals(that.name) : that.name == null;
}
@Override
public final int hashCode() {
int result = this.basicAuth.hashCode();
result = 31 * result + (this.database.hashCode());
result = 31 * result + (this.driver.hashCode());
result = 31 * result + (this.hostname.hashCode());
result = 31 * result + (this.port.hashCode());
result = 31 * result + (this.key != null ? this.key.hashCode() : 0);
result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
return result;
}
}
}