io.github.cdklabs.cdk.appflow.FlowProps 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.226Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.FlowProps")
@software.amazon.jsii.Jsii.Proxy(FlowProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface FlowProps extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.IDestination getDestination();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.util.List getMappings();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.ISource getSource();
/**
*/
@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.util.List getFilters() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.kms.IKey getKey() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getName() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.util.List getTransforms() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.util.List getValidations() {
return null;
}
/**
* @return a {@link Builder} of {@link FlowProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link FlowProps}
*/
@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.IDestination destination;
java.util.List mappings;
io.github.cdklabs.cdk.appflow.ISource source;
java.lang.String description;
java.util.List filters;
software.amazon.awscdk.services.kms.IKey key;
java.lang.String name;
java.util.List transforms;
java.util.List validations;
/**
* Sets the value of {@link FlowProps#getDestination}
* @param destination the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder destination(io.github.cdklabs.cdk.appflow.IDestination destination) {
this.destination = destination;
return this;
}
/**
* Sets the value of {@link FlowProps#getMappings}
* @param mappings 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 mappings(java.util.List extends io.github.cdklabs.cdk.appflow.IMapping> mappings) {
this.mappings = (java.util.List)mappings;
return this;
}
/**
* Sets the value of {@link FlowProps#getSource}
* @param source the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder source(io.github.cdklabs.cdk.appflow.ISource source) {
this.source = source;
return this;
}
/**
* Sets the value of {@link FlowProps#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 FlowProps#getFilters}
* @param filters the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder filters(java.util.List extends io.github.cdklabs.cdk.appflow.IFilter> filters) {
this.filters = (java.util.List)filters;
return this;
}
/**
* Sets the value of {@link FlowProps#getKey}
* @param key the value to be set.
* @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 FlowProps#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;
}
/**
* Sets the value of {@link FlowProps#getTransforms}
* @param transforms the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder transforms(java.util.List extends io.github.cdklabs.cdk.appflow.ITransform> transforms) {
this.transforms = (java.util.List)transforms;
return this;
}
/**
* Sets the value of {@link FlowProps#getValidations}
* @param validations the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder validations(java.util.List extends io.github.cdklabs.cdk.appflow.IValidation> validations) {
this.validations = (java.util.List)validations;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link FlowProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public FlowProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link FlowProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements FlowProps {
private final io.github.cdklabs.cdk.appflow.IDestination destination;
private final java.util.List mappings;
private final io.github.cdklabs.cdk.appflow.ISource source;
private final java.lang.String description;
private final java.util.List filters;
private final software.amazon.awscdk.services.kms.IKey key;
private final java.lang.String name;
private final java.util.List transforms;
private final java.util.List validations;
/**
* 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.destination = software.amazon.jsii.Kernel.get(this, "destination", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.IDestination.class));
this.mappings = software.amazon.jsii.Kernel.get(this, "mappings", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.IMapping.class)));
this.source = software.amazon.jsii.Kernel.get(this, "source", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.ISource.class));
this.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.filters = software.amazon.jsii.Kernel.get(this, "filters", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.IFilter.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));
this.transforms = software.amazon.jsii.Kernel.get(this, "transforms", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.ITransform.class)));
this.validations = software.amazon.jsii.Kernel.get(this, "validations", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.IValidation.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.destination = java.util.Objects.requireNonNull(builder.destination, "destination is required");
this.mappings = (java.util.List)java.util.Objects.requireNonNull(builder.mappings, "mappings is required");
this.source = java.util.Objects.requireNonNull(builder.source, "source is required");
this.description = builder.description;
this.filters = (java.util.List)builder.filters;
this.key = builder.key;
this.name = builder.name;
this.transforms = (java.util.List)builder.transforms;
this.validations = (java.util.List)builder.validations;
}
@Override
public final io.github.cdklabs.cdk.appflow.IDestination getDestination() {
return this.destination;
}
@Override
public final java.util.List getMappings() {
return this.mappings;
}
@Override
public final io.github.cdklabs.cdk.appflow.ISource getSource() {
return this.source;
}
@Override
public final java.lang.String getDescription() {
return this.description;
}
@Override
public final java.util.List getFilters() {
return this.filters;
}
@Override
public final software.amazon.awscdk.services.kms.IKey getKey() {
return this.key;
}
@Override
public final java.lang.String getName() {
return this.name;
}
@Override
public final java.util.List getTransforms() {
return this.transforms;
}
@Override
public final java.util.List getValidations() {
return this.validations;
}
@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("destination", om.valueToTree(this.getDestination()));
data.set("mappings", om.valueToTree(this.getMappings()));
data.set("source", om.valueToTree(this.getSource()));
if (this.getDescription() != null) {
data.set("description", om.valueToTree(this.getDescription()));
}
if (this.getFilters() != null) {
data.set("filters", om.valueToTree(this.getFilters()));
}
if (this.getKey() != null) {
data.set("key", om.valueToTree(this.getKey()));
}
if (this.getName() != null) {
data.set("name", om.valueToTree(this.getName()));
}
if (this.getTransforms() != null) {
data.set("transforms", om.valueToTree(this.getTransforms()));
}
if (this.getValidations() != null) {
data.set("validations", om.valueToTree(this.getValidations()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-appflow.FlowProps"));
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;
FlowProps.Jsii$Proxy that = (FlowProps.Jsii$Proxy) o;
if (!destination.equals(that.destination)) return false;
if (!mappings.equals(that.mappings)) return false;
if (!source.equals(that.source)) return false;
if (this.description != null ? !this.description.equals(that.description) : that.description != null) return false;
if (this.filters != null ? !this.filters.equals(that.filters) : that.filters != null) return false;
if (this.key != null ? !this.key.equals(that.key) : that.key != null) return false;
if (this.name != null ? !this.name.equals(that.name) : that.name != null) return false;
if (this.transforms != null ? !this.transforms.equals(that.transforms) : that.transforms != null) return false;
return this.validations != null ? this.validations.equals(that.validations) : that.validations == null;
}
@Override
public final int hashCode() {
int result = this.destination.hashCode();
result = 31 * result + (this.mappings.hashCode());
result = 31 * result + (this.source.hashCode());
result = 31 * result + (this.description != null ? this.description.hashCode() : 0);
result = 31 * result + (this.filters != null ? this.filters.hashCode() : 0);
result = 31 * result + (this.key != null ? this.key.hashCode() : 0);
result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
result = 31 * result + (this.transforms != null ? this.transforms.hashCode() : 0);
result = 31 * result + (this.validations != null ? this.validations.hashCode() : 0);
return result;
}
}
}