/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.pipes.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreatePipeRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* A description of the pipe. *

*/ private String description; /** *

* The state the pipe should be in. *

*/ private String desiredState; /** *

* The ARN of the enrichment resource. *

*/ private String enrichment; /** *

* The parameters required to set up enrichment on your pipe. *

*/ private PipeEnrichmentParameters enrichmentParameters; /** *

* The name of the pipe. *

*/ private String name; /** *

* The ARN of the role that allows the pipe to send data to the target. *

*/ private String roleArn; /** *

* The ARN of the source resource. *

*/ private String source; /** *

* The parameters required to set up a source for your pipe. *

*/ private PipeSourceParameters sourceParameters; /** *

* The list of key-value pairs to associate with the pipe. *

*/ private java.util.Map tags; /** *

* The ARN of the target resource. *

*/ private String target; /** *

* The parameters required to set up a target for your pipe. *

*/ private PipeTargetParameters targetParameters; /** *

* A description of the pipe. *

* * @param description * A description of the pipe. */ public void setDescription(String description) { this.description = description; } /** *

* A description of the pipe. *

* * @return A description of the pipe. */ public String getDescription() { return this.description; } /** *

* A description of the pipe. *

* * @param description * A description of the pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withDescription(String description) { setDescription(description); return this; } /** *

* The state the pipe should be in. *

* * @param desiredState * The state the pipe should be in. * @see RequestedPipeState */ public void setDesiredState(String desiredState) { this.desiredState = desiredState; } /** *

* The state the pipe should be in. *

* * @return The state the pipe should be in. * @see RequestedPipeState */ public String getDesiredState() { return this.desiredState; } /** *

* The state the pipe should be in. *

* * @param desiredState * The state the pipe should be in. * @return Returns a reference to this object so that method calls can be chained together. * @see RequestedPipeState */ public CreatePipeRequest withDesiredState(String desiredState) { setDesiredState(desiredState); return this; } /** *

* The state the pipe should be in. *

* * @param desiredState * The state the pipe should be in. * @return Returns a reference to this object so that method calls can be chained together. * @see RequestedPipeState */ public CreatePipeRequest withDesiredState(RequestedPipeState desiredState) { this.desiredState = desiredState.toString(); return this; } /** *

* The ARN of the enrichment resource. *

* * @param enrichment * The ARN of the enrichment resource. */ public void setEnrichment(String enrichment) { this.enrichment = enrichment; } /** *

* The ARN of the enrichment resource. *

* * @return The ARN of the enrichment resource. */ public String getEnrichment() { return this.enrichment; } /** *

* The ARN of the enrichment resource. *

* * @param enrichment * The ARN of the enrichment resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withEnrichment(String enrichment) { setEnrichment(enrichment); return this; } /** *

* The parameters required to set up enrichment on your pipe. *

* * @param enrichmentParameters * The parameters required to set up enrichment on your pipe. */ public void setEnrichmentParameters(PipeEnrichmentParameters enrichmentParameters) { this.enrichmentParameters = enrichmentParameters; } /** *

* The parameters required to set up enrichment on your pipe. *

* * @return The parameters required to set up enrichment on your pipe. */ public PipeEnrichmentParameters getEnrichmentParameters() { return this.enrichmentParameters; } /** *

* The parameters required to set up enrichment on your pipe. *

* * @param enrichmentParameters * The parameters required to set up enrichment on your pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withEnrichmentParameters(PipeEnrichmentParameters enrichmentParameters) { setEnrichmentParameters(enrichmentParameters); return this; } /** *

* The name of the pipe. *

* * @param name * The name of the pipe. */ public void setName(String name) { this.name = name; } /** *

* The name of the pipe. *

* * @return The name of the pipe. */ public String getName() { return this.name; } /** *

* The name of the pipe. *

* * @param name * The name of the pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withName(String name) { setName(name); return this; } /** *

* The ARN of the role that allows the pipe to send data to the target. *

* * @param roleArn * The ARN of the role that allows the pipe to send data to the target. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** *

* The ARN of the role that allows the pipe to send data to the target. *

* * @return The ARN of the role that allows the pipe to send data to the target. */ public String getRoleArn() { return this.roleArn; } /** *

* The ARN of the role that allows the pipe to send data to the target. *

* * @param roleArn * The ARN of the role that allows the pipe to send data to the target. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** *

* The ARN of the source resource. *

* * @param source * The ARN of the source resource. */ public void setSource(String source) { this.source = source; } /** *

* The ARN of the source resource. *

* * @return The ARN of the source resource. */ public String getSource() { return this.source; } /** *

* The ARN of the source resource. *

* * @param source * The ARN of the source resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withSource(String source) { setSource(source); return this; } /** *

* The parameters required to set up a source for your pipe. *

* * @param sourceParameters * The parameters required to set up a source for your pipe. */ public void setSourceParameters(PipeSourceParameters sourceParameters) { this.sourceParameters = sourceParameters; } /** *

* The parameters required to set up a source for your pipe. *

* * @return The parameters required to set up a source for your pipe. */ public PipeSourceParameters getSourceParameters() { return this.sourceParameters; } /** *

* The parameters required to set up a source for your pipe. *

* * @param sourceParameters * The parameters required to set up a source for your pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withSourceParameters(PipeSourceParameters sourceParameters) { setSourceParameters(sourceParameters); return this; } /** *

* The list of key-value pairs to associate with the pipe. *

* * @return The list of key-value pairs to associate with the pipe. */ public java.util.Map getTags() { return tags; } /** *

* The list of key-value pairs to associate with the pipe. *

* * @param tags * The list of key-value pairs to associate with the pipe. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The list of key-value pairs to associate with the pipe. *

* * @param tags * The list of key-value pairs to associate with the pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see CreatePipeRequest#withTags * @returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest clearTagsEntries() { this.tags = null; return this; } /** *

* The ARN of the target resource. *

* * @param target * The ARN of the target resource. */ public void setTarget(String target) { this.target = target; } /** *

* The ARN of the target resource. *

* * @return The ARN of the target resource. */ public String getTarget() { return this.target; } /** *

* The ARN of the target resource. *

* * @param target * The ARN of the target resource. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withTarget(String target) { setTarget(target); return this; } /** *

* The parameters required to set up a target for your pipe. *

* * @param targetParameters * The parameters required to set up a target for your pipe. */ public void setTargetParameters(PipeTargetParameters targetParameters) { this.targetParameters = targetParameters; } /** *

* The parameters required to set up a target for your pipe. *

* * @return The parameters required to set up a target for your pipe. */ public PipeTargetParameters getTargetParameters() { return this.targetParameters; } /** *

* The parameters required to set up a target for your pipe. *

* * @param targetParameters * The parameters required to set up a target for your pipe. * @return Returns a reference to this object so that method calls can be chained together. */ public CreatePipeRequest withTargetParameters(PipeTargetParameters targetParameters) { setTargetParameters(targetParameters); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDescription() != null) sb.append("Description: ").append("***Sensitive Data Redacted***").append(","); if (getDesiredState() != null) sb.append("DesiredState: ").append(getDesiredState()).append(","); if (getEnrichment() != null) sb.append("Enrichment: ").append(getEnrichment()).append(","); if (getEnrichmentParameters() != null) sb.append("EnrichmentParameters: ").append(getEnrichmentParameters()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getRoleArn() != null) sb.append("RoleArn: ").append(getRoleArn()).append(","); if (getSource() != null) sb.append("Source: ").append(getSource()).append(","); if (getSourceParameters() != null) sb.append("SourceParameters: ").append(getSourceParameters()).append(","); if (getTags() != null) sb.append("Tags: ").append("***Sensitive Data Redacted***").append(","); if (getTarget() != null) sb.append("Target: ").append(getTarget()).append(","); if (getTargetParameters() != null) sb.append("TargetParameters: ").append(getTargetParameters()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreatePipeRequest == false) return false; CreatePipeRequest other = (CreatePipeRequest) obj; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getDesiredState() == null ^ this.getDesiredState() == null) return false; if (other.getDesiredState() != null && other.getDesiredState().equals(this.getDesiredState()) == false) return false; if (other.getEnrichment() == null ^ this.getEnrichment() == null) return false; if (other.getEnrichment() != null && other.getEnrichment().equals(this.getEnrichment()) == false) return false; if (other.getEnrichmentParameters() == null ^ this.getEnrichmentParameters() == null) return false; if (other.getEnrichmentParameters() != null && other.getEnrichmentParameters().equals(this.getEnrichmentParameters()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getSourceParameters() == null ^ this.getSourceParameters() == null) return false; if (other.getSourceParameters() != null && other.getSourceParameters().equals(this.getSourceParameters()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getTarget() == null ^ this.getTarget() == null) return false; if (other.getTarget() != null && other.getTarget().equals(this.getTarget()) == false) return false; if (other.getTargetParameters() == null ^ this.getTargetParameters() == null) return false; if (other.getTargetParameters() != null && other.getTargetParameters().equals(this.getTargetParameters()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getDesiredState() == null) ? 0 : getDesiredState().hashCode()); hashCode = prime * hashCode + ((getEnrichment() == null) ? 0 : getEnrichment().hashCode()); hashCode = prime * hashCode + ((getEnrichmentParameters() == null) ? 0 : getEnrichmentParameters().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getSourceParameters() == null) ? 0 : getSourceParameters().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getTarget() == null) ? 0 : getTarget().hashCode()); hashCode = prime * hashCode + ((getTargetParameters() == null) ? 0 : getTargetParameters().hashCode()); return hashCode; } @Override public CreatePipeRequest clone() { return (CreatePipeRequest) super.clone(); } }