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

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

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

/**
 * (experimental) Properties of the AmazonRdsForPostgreSqlConnectorProfile.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.163Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.AmazonRdsForPostgreSqlConnectorProfileProps")
@software.amazon.jsii.Jsii.Proxy(AmazonRdsForPostgreSqlConnectorProfileProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface AmazonRdsForPostgreSqlConnectorProfileProps 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.AmazonRdsForPostgreSqlBasicAuthSettings getBasicAuth();

    /**
     * (experimental) The name of the PostgreSQL database.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull java.lang.String getDatabase();

    /**
     * (experimental) The PostgreSQL hostname.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull java.lang.String getHostname();

    /**
     * (experimental) The PostgreSQL communication port.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable java.lang.Number getPort() {
        return null;
    }

    /**
     * @return a {@link Builder} of {@link AmazonRdsForPostgreSqlConnectorProfileProps}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    static Builder builder() {
        return new Builder();
    }
    /**
     * A builder for {@link AmazonRdsForPostgreSqlConnectorProfileProps}
     */
    @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.AmazonRdsForPostgreSqlBasicAuthSettings basicAuth;
        java.lang.String database;
        java.lang.String hostname;
        java.lang.Number port;
        software.amazon.awscdk.services.kms.IKey key;
        java.lang.String name;

        /**
         * Sets the value of {@link AmazonRdsForPostgreSqlConnectorProfileProps#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.AmazonRdsForPostgreSqlBasicAuthSettings basicAuth) {
            this.basicAuth = basicAuth;
            return this;
        }

        /**
         * Sets the value of {@link AmazonRdsForPostgreSqlConnectorProfileProps#getDatabase}
         * @param database The name of the PostgreSQL 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 AmazonRdsForPostgreSqlConnectorProfileProps#getHostname}
         * @param hostname The PostgreSQL hostname. 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 AmazonRdsForPostgreSqlConnectorProfileProps#getPort}
         * @param port The PostgreSQL communication port.
         * @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 AmazonRdsForPostgreSqlConnectorProfileProps#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 AmazonRdsForPostgreSqlConnectorProfileProps#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 AmazonRdsForPostgreSqlConnectorProfileProps}
         * @throws NullPointerException if any required attribute was not provided
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        @Override
        public AmazonRdsForPostgreSqlConnectorProfileProps build() {
            return new Jsii$Proxy(this);
        }
    }

    /**
     * An implementation for {@link AmazonRdsForPostgreSqlConnectorProfileProps}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @software.amazon.jsii.Internal
    final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AmazonRdsForPostgreSqlConnectorProfileProps {
        private final io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlBasicAuthSettings basicAuth;
        private final java.lang.String database;
        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.AmazonRdsForPostgreSqlBasicAuthSettings.class));
            this.database = software.amazon.jsii.Kernel.get(this, "database", software.amazon.jsii.NativeType.forClass(java.lang.String.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.hostname = java.util.Objects.requireNonNull(builder.hostname, "hostname is required");
            this.port = builder.port;
            this.key = builder.key;
            this.name = builder.name;
        }

        @Override
        public final io.github.cdklabs.cdk.appflow.AmazonRdsForPostgreSqlBasicAuthSettings getBasicAuth() {
            return this.basicAuth;
        }

        @Override
        public final java.lang.String getDatabase() {
            return this.database;
        }

        @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("hostname", om.valueToTree(this.getHostname()));
            if (this.getPort() != null) {
                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.AmazonRdsForPostgreSqlConnectorProfileProps"));
            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;

            AmazonRdsForPostgreSqlConnectorProfileProps.Jsii$Proxy that = (AmazonRdsForPostgreSqlConnectorProfileProps.Jsii$Proxy) o;

            if (!basicAuth.equals(that.basicAuth)) return false;
            if (!database.equals(that.database)) return false;
            if (!hostname.equals(that.hostname)) return false;
            if (this.port != null ? !this.port.equals(that.port) : that.port != null) 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.hostname.hashCode());
            result = 31 * result + (this.port != null ? this.port.hashCode() : 0);
            result = 31 * result + (this.key != null ? this.key.hashCode() : 0);
            result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
            return result;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy