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

com.amazonaws.services.route53recoverycluster.model.UpdateRoutingControlStatesRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Route53 Recovery Cluster module holds the client classes that are used for communicating with Route53 Recovery Cluster Service

There is a newer version: 1.12.772
Show 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.route53recoverycluster.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 UpdateRoutingControlStatesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* A set of routing control entries that you want to update. *

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

* The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing * control states. You can override one safety rule or multiple safety rules by including one or more ARNs, * separated by commas. *

*

* For more information, see Override * safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide. *

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

* A set of routing control entries that you want to update. *

* * @return A set of routing control entries that you want to update. */ public java.util.List getUpdateRoutingControlStateEntries() { return updateRoutingControlStateEntries; } /** *

* A set of routing control entries that you want to update. *

* * @param updateRoutingControlStateEntries * A set of routing control entries that you want to update. */ public void setUpdateRoutingControlStateEntries(java.util.Collection updateRoutingControlStateEntries) { if (updateRoutingControlStateEntries == null) { this.updateRoutingControlStateEntries = null; return; } this.updateRoutingControlStateEntries = new java.util.ArrayList(updateRoutingControlStateEntries); } /** *

* A set of routing control entries that you want to update. *

*

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

* * @param updateRoutingControlStateEntries * A set of routing control entries that you want to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRoutingControlStatesRequest withUpdateRoutingControlStateEntries(UpdateRoutingControlStateEntry... updateRoutingControlStateEntries) { if (this.updateRoutingControlStateEntries == null) { setUpdateRoutingControlStateEntries(new java.util.ArrayList(updateRoutingControlStateEntries.length)); } for (UpdateRoutingControlStateEntry ele : updateRoutingControlStateEntries) { this.updateRoutingControlStateEntries.add(ele); } return this; } /** *

* A set of routing control entries that you want to update. *

* * @param updateRoutingControlStateEntries * A set of routing control entries that you want to update. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRoutingControlStatesRequest withUpdateRoutingControlStateEntries( java.util.Collection updateRoutingControlStateEntries) { setUpdateRoutingControlStateEntries(updateRoutingControlStateEntries); return this; } /** *

* The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing * control states. You can override one safety rule or multiple safety rules by including one or more ARNs, * separated by commas. *

*

* For more information, see Override * safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide. *

* * @return The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating * routing control states. You can override one safety rule or multiple safety rules by including one or * more ARNs, separated by commas.

*

* For more information, see * Override safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller * Developer Guide. */ public java.util.List getSafetyRulesToOverride() { return safetyRulesToOverride; } /** *

* The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing * control states. You can override one safety rule or multiple safety rules by including one or more ARNs, * separated by commas. *

*

* For more information, see Override * safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide. *

* * @param safetyRulesToOverride * The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating * routing control states. You can override one safety rule or multiple safety rules by including one or more * ARNs, separated by commas.

*

* For more information, see * Override safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller * Developer Guide. */ public void setSafetyRulesToOverride(java.util.Collection safetyRulesToOverride) { if (safetyRulesToOverride == null) { this.safetyRulesToOverride = null; return; } this.safetyRulesToOverride = new java.util.ArrayList(safetyRulesToOverride); } /** *

* The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing * control states. You can override one safety rule or multiple safety rules by including one or more ARNs, * separated by commas. *

*

* For more information, see Override * safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide. *

*

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

* * @param safetyRulesToOverride * The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating * routing control states. You can override one safety rule or multiple safety rules by including one or more * ARNs, separated by commas.

*

* For more information, see * Override safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller * Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRoutingControlStatesRequest withSafetyRulesToOverride(String... safetyRulesToOverride) { if (this.safetyRulesToOverride == null) { setSafetyRulesToOverride(new java.util.ArrayList(safetyRulesToOverride.length)); } for (String ele : safetyRulesToOverride) { this.safetyRulesToOverride.add(ele); } return this; } /** *

* The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating routing * control states. You can override one safety rule or multiple safety rules by including one or more ARNs, * separated by commas. *

*

* For more information, see Override * safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller Developer Guide. *

* * @param safetyRulesToOverride * The Amazon Resource Names (ARNs) for the safety rules that you want to override when you're updating * routing control states. You can override one safety rule or multiple safety rules by including one or more * ARNs, separated by commas.

*

* For more information, see * Override safety rules to reroute traffic in the Amazon Route 53 Application Recovery Controller * Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateRoutingControlStatesRequest withSafetyRulesToOverride(java.util.Collection safetyRulesToOverride) { setSafetyRulesToOverride(safetyRulesToOverride); 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 (getUpdateRoutingControlStateEntries() != null) sb.append("UpdateRoutingControlStateEntries: ").append(getUpdateRoutingControlStateEntries()).append(","); if (getSafetyRulesToOverride() != null) sb.append("SafetyRulesToOverride: ").append(getSafetyRulesToOverride()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateRoutingControlStatesRequest == false) return false; UpdateRoutingControlStatesRequest other = (UpdateRoutingControlStatesRequest) obj; if (other.getUpdateRoutingControlStateEntries() == null ^ this.getUpdateRoutingControlStateEntries() == null) return false; if (other.getUpdateRoutingControlStateEntries() != null && other.getUpdateRoutingControlStateEntries().equals(this.getUpdateRoutingControlStateEntries()) == false) return false; if (other.getSafetyRulesToOverride() == null ^ this.getSafetyRulesToOverride() == null) return false; if (other.getSafetyRulesToOverride() != null && other.getSafetyRulesToOverride().equals(this.getSafetyRulesToOverride()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getUpdateRoutingControlStateEntries() == null) ? 0 : getUpdateRoutingControlStateEntries().hashCode()); hashCode = prime * hashCode + ((getSafetyRulesToOverride() == null) ? 0 : getSafetyRulesToOverride().hashCode()); return hashCode; } @Override public UpdateRoutingControlStatesRequest clone() { return (UpdateRoutingControlStatesRequest) super.clone(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy