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

io.github.cdklabs.cdk.data.zone.DataSourceOptions 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.569Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.data.zone.$Module.class, fqn = "cdk-data-zone.DataSourceOptions")
@software.amazon.jsii.Jsii.Proxy(DataSourceOptions.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface DataSourceOptions extends software.amazon.jsii.JsiiSerializable {

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration getConfiguration();

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable java.lang.String getDescription() {
        return null;
    }

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable java.lang.Boolean getEnabled() {
        return null;
    }

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable java.lang.Boolean getPublishOnImport() {
        return null;
    }

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable java.lang.Boolean getRecommendation() {
        return null;
    }

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.data.zone.Schedule getSchedule() {
        return null;
    }

    /**
     * @return a {@link Builder} of {@link DataSourceOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    static Builder builder() {
        return new Builder();
    }
    /**
     * A builder for {@link DataSourceOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public static final class Builder implements software.amazon.jsii.Builder {
        io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration configuration;
        java.lang.String description;
        java.lang.Boolean enabled;
        java.lang.Boolean publishOnImport;
        java.lang.Boolean recommendation;
        io.github.cdklabs.cdk.data.zone.Schedule schedule;

        /**
         * Sets the value of {@link DataSourceOptions#getConfiguration}
         * @param configuration the value to be set. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder configuration(io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration configuration) {
            this.configuration = configuration;
            return this;
        }

        /**
         * Sets the value of {@link DataSourceOptions#getDescription}
         * @param description the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder description(java.lang.String description) {
            this.description = description;
            return this;
        }

        /**
         * Sets the value of {@link DataSourceOptions#getEnabled}
         * @param enabled the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder enabled(java.lang.Boolean enabled) {
            this.enabled = enabled;
            return this;
        }

        /**
         * Sets the value of {@link DataSourceOptions#getPublishOnImport}
         * @param publishOnImport the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder publishOnImport(java.lang.Boolean publishOnImport) {
            this.publishOnImport = publishOnImport;
            return this;
        }

        /**
         * Sets the value of {@link DataSourceOptions#getRecommendation}
         * @param recommendation the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder recommendation(java.lang.Boolean recommendation) {
            this.recommendation = recommendation;
            return this;
        }

        /**
         * Sets the value of {@link DataSourceOptions#getSchedule}
         * @param schedule the value to be set.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
        public Builder schedule(io.github.cdklabs.cdk.data.zone.Schedule schedule) {
            this.schedule = schedule;
            return this;
        }

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

    /**
     * An implementation for {@link DataSourceOptions}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    @software.amazon.jsii.Internal
    final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements DataSourceOptions {
        private final io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration configuration;
        private final java.lang.String description;
        private final java.lang.Boolean enabled;
        private final java.lang.Boolean publishOnImport;
        private final java.lang.Boolean recommendation;
        private final io.github.cdklabs.cdk.data.zone.Schedule schedule;

        /**
         * 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.configuration = software.amazon.jsii.Kernel.get(this, "configuration", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration.class));
            this.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
            this.enabled = software.amazon.jsii.Kernel.get(this, "enabled", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
            this.publishOnImport = software.amazon.jsii.Kernel.get(this, "publishOnImport", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
            this.recommendation = software.amazon.jsii.Kernel.get(this, "recommendation", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
            this.schedule = software.amazon.jsii.Kernel.get(this, "schedule", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.data.zone.Schedule.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.configuration = java.util.Objects.requireNonNull(builder.configuration, "configuration is required");
            this.description = builder.description;
            this.enabled = builder.enabled;
            this.publishOnImport = builder.publishOnImport;
            this.recommendation = builder.recommendation;
            this.schedule = builder.schedule;
        }

        @Override
        public final io.github.cdklabs.cdk.data.zone.IDataSourceConfiguration getConfiguration() {
            return this.configuration;
        }

        @Override
        public final java.lang.String getDescription() {
            return this.description;
        }

        @Override
        public final java.lang.Boolean getEnabled() {
            return this.enabled;
        }

        @Override
        public final java.lang.Boolean getPublishOnImport() {
            return this.publishOnImport;
        }

        @Override
        public final java.lang.Boolean getRecommendation() {
            return this.recommendation;
        }

        @Override
        public final io.github.cdklabs.cdk.data.zone.Schedule getSchedule() {
            return this.schedule;
        }

        @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("configuration", om.valueToTree(this.getConfiguration()));
            if (this.getDescription() != null) {
                data.set("description", om.valueToTree(this.getDescription()));
            }
            if (this.getEnabled() != null) {
                data.set("enabled", om.valueToTree(this.getEnabled()));
            }
            if (this.getPublishOnImport() != null) {
                data.set("publishOnImport", om.valueToTree(this.getPublishOnImport()));
            }
            if (this.getRecommendation() != null) {
                data.set("recommendation", om.valueToTree(this.getRecommendation()));
            }
            if (this.getSchedule() != null) {
                data.set("schedule", om.valueToTree(this.getSchedule()));
            }

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

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

            if (!configuration.equals(that.configuration)) return false;
            if (this.description != null ? !this.description.equals(that.description) : that.description != null) return false;
            if (this.enabled != null ? !this.enabled.equals(that.enabled) : that.enabled != null) return false;
            if (this.publishOnImport != null ? !this.publishOnImport.equals(that.publishOnImport) : that.publishOnImport != null) return false;
            if (this.recommendation != null ? !this.recommendation.equals(that.recommendation) : that.recommendation != null) return false;
            return this.schedule != null ? this.schedule.equals(that.schedule) : that.schedule == null;
        }

        @Override
        public final int hashCode() {
            int result = this.configuration.hashCode();
            result = 31 * result + (this.description != null ? this.description.hashCode() : 0);
            result = 31 * result + (this.enabled != null ? this.enabled.hashCode() : 0);
            result = 31 * result + (this.publishOnImport != null ? this.publishOnImport.hashCode() : 0);
            result = 31 * result + (this.recommendation != null ? this.recommendation.hashCode() : 0);
            result = 31 * result + (this.schedule != null ? this.schedule.hashCode() : 0);
            return result;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy