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

io.github.cdklabs.cdk.appflow.TriggeredFlowBaseProps Maven / Gradle / Ivy

There is a newer version: 0.0.44
Show newest version
package io.github.cdklabs.cdk.appflow;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-10-11T10:39:08.297Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.appflow.$Module.class, fqn = "@cdklabs/cdk-appflow.TriggeredFlowBaseProps")
@software.amazon.jsii.Jsii.Proxy(TriggeredFlowBaseProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface TriggeredFlowBaseProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.appflow.FlowProps {

    /**
     * @deprecated . This property is deprecated and will be removed in a future release. Use {@link status } instead
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated)
    @Deprecated
    default @org.jetbrains.annotations.Nullable java.lang.Boolean getAutoActivate() {
        return null;
    }

    /**
     * (experimental) The status to set on the flow.
     * 

* Use this over {@link autoActivate}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.appflow.FlowStatus getStatus() { return null; } /** * @return a {@link Builder} of {@link TriggeredFlowBaseProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) static Builder builder() { return new Builder(); } /** * A builder for {@link TriggeredFlowBaseProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { java.lang.Boolean autoActivate; io.github.cdklabs.cdk.appflow.FlowStatus status; 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 TriggeredFlowBaseProps#getAutoActivate} * @param autoActivate the value to be set. * @return {@code this} * @deprecated . This property is deprecated and will be removed in a future release. Use {@link status } instead */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Deprecated) @Deprecated public Builder autoActivate(java.lang.Boolean autoActivate) { this.autoActivate = autoActivate; return this; } /** * Sets the value of {@link TriggeredFlowBaseProps#getStatus} * @param status The status to set on the flow. * Use this over {@link autoActivate}. * @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 TriggeredFlowBaseProps#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 TriggeredFlowBaseProps#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 mappings) { this.mappings = (java.util.List)mappings; return this; } /** * Sets the value of {@link TriggeredFlowBaseProps#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 TriggeredFlowBaseProps#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 TriggeredFlowBaseProps#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 filters) { this.filters = (java.util.List)filters; return this; } /** * Sets the value of {@link TriggeredFlowBaseProps#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 TriggeredFlowBaseProps#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 TriggeredFlowBaseProps#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 transforms) { this.transforms = (java.util.List)transforms; return this; } /** * Sets the value of {@link TriggeredFlowBaseProps#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 validations) { this.validations = (java.util.List)validations; return this; } /** * Builds the configured instance. * @return a new instance of {@link TriggeredFlowBaseProps} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public TriggeredFlowBaseProps build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link TriggeredFlowBaseProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements TriggeredFlowBaseProps { private final java.lang.Boolean autoActivate; private final io.github.cdklabs.cdk.appflow.FlowStatus status; 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.autoActivate = software.amazon.jsii.Kernel.get(this, "autoActivate", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class)); this.status = software.amazon.jsii.Kernel.get(this, "status", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.appflow.FlowStatus.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.autoActivate = builder.autoActivate; this.status = builder.status; 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 java.lang.Boolean getAutoActivate() { return this.autoActivate; } @Override public final io.github.cdklabs.cdk.appflow.FlowStatus getStatus() { return this.status; } @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(); if (this.getAutoActivate() != null) { data.set("autoActivate", om.valueToTree(this.getAutoActivate())); } if (this.getStatus() != null) { data.set("status", om.valueToTree(this.getStatus())); } 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.TriggeredFlowBaseProps")); 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; TriggeredFlowBaseProps.Jsii$Proxy that = (TriggeredFlowBaseProps.Jsii$Proxy) o; if (this.autoActivate != null ? !this.autoActivate.equals(that.autoActivate) : that.autoActivate != null) return false; if (this.status != null ? !this.status.equals(that.status) : that.status != 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.autoActivate != null ? this.autoActivate.hashCode() : 0; result = 31 * result + (this.status != null ? this.status.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; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy