io.github.cdklabs.cdk.appflow.FlowBaseProps 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.225Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.FlowBaseProps")
@software.amazon.jsii.Jsii.Proxy(FlowBaseProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface FlowBaseProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.appflow.FlowProps {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.appflow.FlowType getType();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.FlowStatus getStatus() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.TriggerConfig getTriggerConfig() {
return null;
}
/**
* @return a {@link Builder} of {@link FlowBaseProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link FlowBaseProps}
*/
@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.FlowType type;
io.github.cdklabs.cdk.appflow.FlowStatus status;
io.github.cdklabs.cdk.appflow.TriggerConfig triggerConfig;
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 FlowBaseProps#getType}
* @param type the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder type(io.github.cdklabs.cdk.appflow.FlowType type) {
this.type = type;
return this;
}
/**
* Sets the value of {@link FlowBaseProps#getStatus}
* @param status the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder status(io.github.cdklabs.cdk.appflow.FlowStatus status) {
this.status = status;
return this;
}
/**
* Sets the value of {@link FlowBaseProps#getTriggerConfig}
* @param triggerConfig the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder triggerConfig(io.github.cdklabs.cdk.appflow.TriggerConfig triggerConfig) {
this.triggerConfig = triggerConfig;
return this;
}
/**
* Sets the value of {@link FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps#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 FlowBaseProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public FlowBaseProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link FlowBaseProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements FlowBaseProps {
private final io.github.cdklabs.cdk.appflow.FlowType type;
private final io.github.cdklabs.cdk.appflow.FlowStatus status;
private final io.github.cdklabs.cdk.appflow.TriggerConfig triggerConfig;
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.type = software.amazon.jsii.Kernel.get(this, "type", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.FlowType.class));
this.status = software.amazon.jsii.Kernel.get(this, "status", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.FlowStatus.class));
this.triggerConfig = software.amazon.jsii.Kernel.get(this, "triggerConfig", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.TriggerConfig.class));
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.type = java.util.Objects.requireNonNull(builder.type, "type is required");
this.status = builder.status;
this.triggerConfig = builder.triggerConfig;
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.FlowType getType() {
return this.type;
}
@Override
public final io.github.cdklabs.cdk.appflow.FlowStatus getStatus() {
return this.status;
}
@Override
public final io.github.cdklabs.cdk.appflow.TriggerConfig getTriggerConfig() {
return this.triggerConfig;
}
@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("type", om.valueToTree(this.getType()));
if (this.getStatus() != null) {
data.set("status", om.valueToTree(this.getStatus()));
}
if (this.getTriggerConfig() != null) {
data.set("triggerConfig", om.valueToTree(this.getTriggerConfig()));
}
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.FlowBaseProps"));
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;
FlowBaseProps.Jsii$Proxy that = (FlowBaseProps.Jsii$Proxy) o;
if (!type.equals(that.type)) return false;
if (this.status != null ? !this.status.equals(that.status) : that.status != null) return false;
if (this.triggerConfig != null ? !this.triggerConfig.equals(that.triggerConfig) : that.triggerConfig != null) return false;
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.type.hashCode();
result = 31 * result + (this.status != null ? this.status.hashCode() : 0);
result = 31 * result + (this.triggerConfig != null ? this.triggerConfig.hashCode() : 0);
result = 31 * 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;
}
}
}