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

com.amazonaws.services.frauddetector.model.UpdateRuleVersionRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Fraud Detector module holds the client classes that are used for communicating with Amazon Fraud Detector Service

The newest version!
/*
 * Copyright 2019-2024 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.frauddetector.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 UpdateRuleVersionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The rule to update. *

*/ private Rule rule; /** *

* The description. *

*/ private String description; /** *

* The rule expression. *

*/ private String expression; /** *

* The language. *

*/ private String language; /** *

* The outcomes. *

*/ private java.util.List outcomes; /** *

* The tags to assign to the rule version. *

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

* The rule to update. *

* * @param rule * The rule to update. */ public void setRule(Rule rule) { this.rule = rule; } /** *

* The rule to update. *

* * @return The rule to update. */ public Rule getRule() { return this.rule; } /** *

* The rule to update. *

* * @param rule * The rule to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withRule(Rule rule) { setRule(rule); return this; } /** *

* The description. *

* * @param description * The description. */ public void setDescription(String description) { this.description = description; } /** *

* The description. *

* * @return The description. */ public String getDescription() { return this.description; } /** *

* The description. *

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

* The rule expression. *

* * @param expression * The rule expression. */ public void setExpression(String expression) { this.expression = expression; } /** *

* The rule expression. *

* * @return The rule expression. */ public String getExpression() { return this.expression; } /** *

* The rule expression. *

* * @param expression * The rule expression. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withExpression(String expression) { setExpression(expression); return this; } /** *

* The language. *

* * @param language * The language. * @see Language */ public void setLanguage(String language) { this.language = language; } /** *

* The language. *

* * @return The language. * @see Language */ public String getLanguage() { return this.language; } /** *

* The language. *

* * @param language * The language. * @return Returns a reference to this object so that method calls can be chained together. * @see Language */ public UpdateRuleVersionRequest withLanguage(String language) { setLanguage(language); return this; } /** *

* The language. *

* * @param language * The language. * @return Returns a reference to this object so that method calls can be chained together. * @see Language */ public UpdateRuleVersionRequest withLanguage(Language language) { this.language = language.toString(); return this; } /** *

* The outcomes. *

* * @return The outcomes. */ public java.util.List getOutcomes() { return outcomes; } /** *

* The outcomes. *

* * @param outcomes * The outcomes. */ public void setOutcomes(java.util.Collection outcomes) { if (outcomes == null) { this.outcomes = null; return; } this.outcomes = new java.util.ArrayList(outcomes); } /** *

* The outcomes. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setOutcomes(java.util.Collection)} or {@link #withOutcomes(java.util.Collection)} if you want to override * the existing values. *

* * @param outcomes * The outcomes. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withOutcomes(String... outcomes) { if (this.outcomes == null) { setOutcomes(new java.util.ArrayList(outcomes.length)); } for (String ele : outcomes) { this.outcomes.add(ele); } return this; } /** *

* The outcomes. *

* * @param outcomes * The outcomes. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withOutcomes(java.util.Collection outcomes) { setOutcomes(outcomes); return this; } /** *

* The tags to assign to the rule version. *

* * @return The tags to assign to the rule version. */ public java.util.List getTags() { return tags; } /** *

* The tags to assign to the rule version. *

* * @param tags * The tags to assign to the rule version. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The tags to assign to the rule version. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * The tags to assign to the rule version. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The tags to assign to the rule version. *

* * @param tags * The tags to assign to the rule version. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRuleVersionRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getRule() != null) sb.append("Rule: ").append(getRule()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getExpression() != null) sb.append("Expression: ").append("***Sensitive Data Redacted***").append(","); if (getLanguage() != null) sb.append("Language: ").append(getLanguage()).append(","); if (getOutcomes() != null) sb.append("Outcomes: ").append(getOutcomes()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateRuleVersionRequest == false) return false; UpdateRuleVersionRequest other = (UpdateRuleVersionRequest) obj; if (other.getRule() == null ^ this.getRule() == null) return false; if (other.getRule() != null && other.getRule().equals(this.getRule()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getExpression() == null ^ this.getExpression() == null) return false; if (other.getExpression() != null && other.getExpression().equals(this.getExpression()) == false) return false; if (other.getLanguage() == null ^ this.getLanguage() == null) return false; if (other.getLanguage() != null && other.getLanguage().equals(this.getLanguage()) == false) return false; if (other.getOutcomes() == null ^ this.getOutcomes() == null) return false; if (other.getOutcomes() != null && other.getOutcomes().equals(this.getOutcomes()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRule() == null) ? 0 : getRule().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getExpression() == null) ? 0 : getExpression().hashCode()); hashCode = prime * hashCode + ((getLanguage() == null) ? 0 : getLanguage().hashCode()); hashCode = prime * hashCode + ((getOutcomes() == null) ? 0 : getOutcomes().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public UpdateRuleVersionRequest clone() { return (UpdateRuleVersionRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy