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

io.github.cdklabs.cdk.data.zone.RedshiftOptions Maven / Gradle / Ivy

The newest version!
package io.github.cdklabs.cdk.data.zone;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-12-05T19:37:12.609Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.data.zone.$Module.class, fqn = "cdk-data-zone.RedshiftOptions")
@software.amazon.jsii.Jsii.Proxy(RedshiftOptions.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface RedshiftOptions extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.data.zone.SourceOptions {

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.secretsmanager.Secret getCredentials();

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull java.lang.String getName();

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull java.lang.String getRedshiftType();

    /**
     * @return a {@link Builder} of {@link RedshiftOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    static Builder builder() {
        return new Builder();
    }
    /**
     * A builder for {@link RedshiftOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public static final class Builder implements software.amazon.jsii.Builder {
        software.amazon.awscdk.services.secretsmanager.Secret credentials;
        java.lang.String name;
        java.lang.String redshiftType;
        java.util.List filterConfigurations;
        software.amazon.awscdk.services.iam.Role dataAccessRole;

        /**
         * Sets the value of {@link RedshiftOptions#getCredentials}
         * @param credentials the value to be set. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder credentials(software.amazon.awscdk.services.secretsmanager.Secret credentials) {
            this.credentials = credentials;
            return this;
        }

        /**
         * Sets the value of {@link RedshiftOptions#getName}
         * @param name the value to be set. This parameter is required.
         * @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;
        }

        /**
         * Sets the value of {@link RedshiftOptions#getRedshiftType}
         * @param redshiftType the value to be set. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder redshiftType(java.lang.String redshiftType) {
            this.redshiftType = redshiftType;
            return this;
        }

        /**
         * Sets the value of {@link RedshiftOptions#getFilterConfigurations}
         * @param filterConfigurations the value to be set. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        @SuppressWarnings("unchecked")
        public Builder filterConfigurations(java.util.List filterConfigurations) {
            this.filterConfigurations = (java.util.List)filterConfigurations;
            return this;
        }

        /**
         * Sets the value of {@link RedshiftOptions#getDataAccessRole}
         * @param dataAccessRole the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder dataAccessRole(software.amazon.awscdk.services.iam.Role dataAccessRole) {
            this.dataAccessRole = dataAccessRole;
            return this;
        }

        /**
         * Builds the configured instance.
         * @return a new instance of {@link RedshiftOptions}
         * @throws NullPointerException if any required attribute was not provided
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        @Override
        public RedshiftOptions build() {
            return new Jsii$Proxy(this);
        }
    }

    /**
     * An implementation for {@link RedshiftOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @software.amazon.jsii.Internal
    final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RedshiftOptions {
        private final software.amazon.awscdk.services.secretsmanager.Secret credentials;
        private final java.lang.String name;
        private final java.lang.String redshiftType;
        private final java.util.List filterConfigurations;
        private final software.amazon.awscdk.services.iam.Role dataAccessRole;

        /**
         * 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.credentials = software.amazon.jsii.Kernel.get(this, "credentials", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.secretsmanager.Secret.class));
            this.name = software.amazon.jsii.Kernel.get(this, "name", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
            this.redshiftType = software.amazon.jsii.Kernel.get(this, "redshiftType", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
            this.filterConfigurations = software.amazon.jsii.Kernel.get(this, "filterConfigurations", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.data.zone.FilterConfiguration.class)));
            this.dataAccessRole = software.amazon.jsii.Kernel.get(this, "dataAccessRole", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.Role.class));
        }

        /**
         * Constructor that initializes the object based on literal property values passed by the {@link Builder}.
         */
        @SuppressWarnings("unchecked")
        protected Jsii$Proxy(final Builder builder) {
            super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
            this.credentials = java.util.Objects.requireNonNull(builder.credentials, "credentials is required");
            this.name = java.util.Objects.requireNonNull(builder.name, "name is required");
            this.redshiftType = java.util.Objects.requireNonNull(builder.redshiftType, "redshiftType is required");
            this.filterConfigurations = (java.util.List)java.util.Objects.requireNonNull(builder.filterConfigurations, "filterConfigurations is required");
            this.dataAccessRole = builder.dataAccessRole;
        }

        @Override
        public final software.amazon.awscdk.services.secretsmanager.Secret getCredentials() {
            return this.credentials;
        }

        @Override
        public final java.lang.String getName() {
            return this.name;
        }

        @Override
        public final java.lang.String getRedshiftType() {
            return this.redshiftType;
        }

        @Override
        public final java.util.List getFilterConfigurations() {
            return this.filterConfigurations;
        }

        @Override
        public final software.amazon.awscdk.services.iam.Role getDataAccessRole() {
            return this.dataAccessRole;
        }

        @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("credentials", om.valueToTree(this.getCredentials()));
            data.set("name", om.valueToTree(this.getName()));
            data.set("redshiftType", om.valueToTree(this.getRedshiftType()));
            data.set("filterConfigurations", om.valueToTree(this.getFilterConfigurations()));
            if (this.getDataAccessRole() != null) {
                data.set("dataAccessRole", om.valueToTree(this.getDataAccessRole()));
            }

            final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
            struct.set("fqn", om.valueToTree("cdk-data-zone.RedshiftOptions"));
            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;

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

            if (!credentials.equals(that.credentials)) return false;
            if (!name.equals(that.name)) return false;
            if (!redshiftType.equals(that.redshiftType)) return false;
            if (!filterConfigurations.equals(that.filterConfigurations)) return false;
            return this.dataAccessRole != null ? this.dataAccessRole.equals(that.dataAccessRole) : that.dataAccessRole == null;
        }

        @Override
        public final int hashCode() {
            int result = this.credentials.hashCode();
            result = 31 * result + (this.name.hashCode());
            result = 31 * result + (this.redshiftType.hashCode());
            result = 31 * result + (this.filterConfigurations.hashCode());
            result = 31 * result + (this.dataAccessRole != null ? this.dataAccessRole.hashCode() : 0);
            return result;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy