io.github.cdklabs.cdk.data.zone.GlueOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdk-data-zone Show documentation
Show all versions of cdk-data-zone Show documentation
AWS DataZone L2 Construct library
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.587Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.data.zone.$Module.class, fqn = "cdk-data-zone.GlueOptions")
@software.amazon.jsii.Jsii.Proxy(GlueOptions.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface GlueOptions extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.data.zone.SourceOptions {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.Boolean getAutoImportDataQualityResult() {
return null;
}
/**
* @return a {@link Builder} of {@link GlueOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link GlueOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.Boolean autoImportDataQualityResult;
java.util.List filterConfigurations;
software.amazon.awscdk.services.iam.Role dataAccessRole;
/**
* Sets the value of {@link GlueOptions#getAutoImportDataQualityResult}
* @param autoImportDataQualityResult the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder autoImportDataQualityResult(java.lang.Boolean autoImportDataQualityResult) {
this.autoImportDataQualityResult = autoImportDataQualityResult;
return this;
}
/**
* Sets the value of {@link GlueOptions#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 extends io.github.cdklabs.cdk.data.zone.FilterConfiguration> filterConfigurations) {
this.filterConfigurations = (java.util.List)filterConfigurations;
return this;
}
/**
* Sets the value of {@link GlueOptions#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 GlueOptions}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public GlueOptions build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link GlueOptions}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements GlueOptions {
private final java.lang.Boolean autoImportDataQualityResult;
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.autoImportDataQualityResult = software.amazon.jsii.Kernel.get(this, "autoImportDataQualityResult", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.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.autoImportDataQualityResult = builder.autoImportDataQualityResult;
this.filterConfigurations = (java.util.List)java.util.Objects.requireNonNull(builder.filterConfigurations, "filterConfigurations is required");
this.dataAccessRole = builder.dataAccessRole;
}
@Override
public final java.lang.Boolean getAutoImportDataQualityResult() {
return this.autoImportDataQualityResult;
}
@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();
if (this.getAutoImportDataQualityResult() != null) {
data.set("autoImportDataQualityResult", om.valueToTree(this.getAutoImportDataQualityResult()));
}
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.GlueOptions"));
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;
GlueOptions.Jsii$Proxy that = (GlueOptions.Jsii$Proxy) o;
if (this.autoImportDataQualityResult != null ? !this.autoImportDataQualityResult.equals(that.autoImportDataQualityResult) : that.autoImportDataQualityResult != null) 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.autoImportDataQualityResult != null ? this.autoImportDataQualityResult.hashCode() : 0;
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