io.github.cdklabs.cdk.appflow.S3DestinationProps Maven / Gradle / Ivy
The newest version!
package io.github.cdklabs.cdk.appflow;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T07:35:38.268Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.S3DestinationProps")
@software.amazon.jsii.Jsii.Proxy(S3DestinationProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface S3DestinationProps extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.S3Location getLocation();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.S3Catalog getCatalog() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.S3OutputFormatting getFormatting() {
return null;
}
/**
* @return a {@link Builder} of {@link S3DestinationProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link S3DestinationProps}
*/
@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.S3Location location;
io.github.cdklabs.cdk.appflow.S3Catalog catalog;
io.github.cdklabs.cdk.appflow.S3OutputFormatting formatting;
/**
* Sets the value of {@link S3DestinationProps#getLocation}
* @param location the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder location(io.github.cdklabs.cdk.appflow.S3Location location) {
this.location = location;
return this;
}
/**
* Sets the value of {@link S3DestinationProps#getCatalog}
* @param catalog the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder catalog(io.github.cdklabs.cdk.appflow.S3Catalog catalog) {
this.catalog = catalog;
return this;
}
/**
* Sets the value of {@link S3DestinationProps#getFormatting}
* @param formatting the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder formatting(io.github.cdklabs.cdk.appflow.S3OutputFormatting formatting) {
this.formatting = formatting;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link S3DestinationProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public S3DestinationProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link S3DestinationProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements S3DestinationProps {
private final io.github.cdklabs.cdk.appflow.S3Location location;
private final io.github.cdklabs.cdk.appflow.S3Catalog catalog;
private final io.github.cdklabs.cdk.appflow.S3OutputFormatting formatting;
/**
* 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.location = software.amazon.jsii.Kernel.get(this, "location", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.S3Location.class));
this.catalog = software.amazon.jsii.Kernel.get(this, "catalog", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.S3Catalog.class));
this.formatting = software.amazon.jsii.Kernel.get(this, "formatting", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.S3OutputFormatting.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.location = java.util.Objects.requireNonNull(builder.location, "location is required");
this.catalog = builder.catalog;
this.formatting = builder.formatting;
}
@Override
public final io.github.cdklabs.cdk.appflow.S3Location getLocation() {
return this.location;
}
@Override
public final io.github.cdklabs.cdk.appflow.S3Catalog getCatalog() {
return this.catalog;
}
@Override
public final io.github.cdklabs.cdk.appflow.S3OutputFormatting getFormatting() {
return this.formatting;
}
@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("location", om.valueToTree(this.getLocation()));
if (this.getCatalog() != null) {
data.set("catalog", om.valueToTree(this.getCatalog()));
}
if (this.getFormatting() != null) {
data.set("formatting", om.valueToTree(this.getFormatting()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-appflow.S3DestinationProps"));
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;
S3DestinationProps.Jsii$Proxy that = (S3DestinationProps.Jsii$Proxy) o;
if (!location.equals(that.location)) return false;
if (this.catalog != null ? !this.catalog.equals(that.catalog) : that.catalog != null) return false;
return this.formatting != null ? this.formatting.equals(that.formatting) : that.formatting == null;
}
@Override
public final int hashCode() {
int result = this.location.hashCode();
result = 31 * result + (this.catalog != null ? this.catalog.hashCode() : 0);
result = 31 * result + (this.formatting != null ? this.formatting.hashCode() : 0);
return result;
}
}
}