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

com.amazonaws.services.route53recoverycluster.model.RoutingControl 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.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* A routing control, which is a simple on/off switch that you can use to route traffic to cells. When a routing control * state is set to ON, traffic flows to a cell. When the state is set to OFF, traffic does not flow. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class RoutingControl implements Serializable, Cloneable, StructuredPojo { /** *

* The Amazon Resource Name (ARN) of the control panel where the routing control is located. *

*/ private String controlPanelArn; /** *

* The name of the control panel where the routing control is located. Only ASCII characters are supported for * control panel names. *

*/ private String controlPanelName; /** *

* The Amazon Resource Name (ARN) of the routing control. *

*/ private String routingControlArn; /** *

* The name of the routing control. *

*/ private String routingControlName; /** *

* The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. * When the state is set to OFF, traffic does not flow. *

*/ private String routingControlState; /** *

* The Amazon Web Services account ID of the routing control owner. *

*/ private String owner; /** *

* The Amazon Resource Name (ARN) of the control panel where the routing control is located. *

* * @param controlPanelArn * The Amazon Resource Name (ARN) of the control panel where the routing control is located. */ public void setControlPanelArn(String controlPanelArn) { this.controlPanelArn = controlPanelArn; } /** *

* The Amazon Resource Name (ARN) of the control panel where the routing control is located. *

* * @return The Amazon Resource Name (ARN) of the control panel where the routing control is located. */ public String getControlPanelArn() { return this.controlPanelArn; } /** *

* The Amazon Resource Name (ARN) of the control panel where the routing control is located. *

* * @param controlPanelArn * The Amazon Resource Name (ARN) of the control panel where the routing control is located. * @return Returns a reference to this object so that method calls can be chained together. */ public RoutingControl withControlPanelArn(String controlPanelArn) { setControlPanelArn(controlPanelArn); return this; } /** *

* The name of the control panel where the routing control is located. Only ASCII characters are supported for * control panel names. *

* * @param controlPanelName * The name of the control panel where the routing control is located. Only ASCII characters are supported * for control panel names. */ public void setControlPanelName(String controlPanelName) { this.controlPanelName = controlPanelName; } /** *

* The name of the control panel where the routing control is located. Only ASCII characters are supported for * control panel names. *

* * @return The name of the control panel where the routing control is located. Only ASCII characters are supported * for control panel names. */ public String getControlPanelName() { return this.controlPanelName; } /** *

* The name of the control panel where the routing control is located. Only ASCII characters are supported for * control panel names. *

* * @param controlPanelName * The name of the control panel where the routing control is located. Only ASCII characters are supported * for control panel names. * @return Returns a reference to this object so that method calls can be chained together. */ public RoutingControl withControlPanelName(String controlPanelName) { setControlPanelName(controlPanelName); return this; } /** *

* The Amazon Resource Name (ARN) of the routing control. *

* * @param routingControlArn * The Amazon Resource Name (ARN) of the routing control. */ public void setRoutingControlArn(String routingControlArn) { this.routingControlArn = routingControlArn; } /** *

* The Amazon Resource Name (ARN) of the routing control. *

* * @return The Amazon Resource Name (ARN) of the routing control. */ public String getRoutingControlArn() { return this.routingControlArn; } /** *

* The Amazon Resource Name (ARN) of the routing control. *

* * @param routingControlArn * The Amazon Resource Name (ARN) of the routing control. * @return Returns a reference to this object so that method calls can be chained together. */ public RoutingControl withRoutingControlArn(String routingControlArn) { setRoutingControlArn(routingControlArn); return this; } /** *

* The name of the routing control. *

* * @param routingControlName * The name of the routing control. */ public void setRoutingControlName(String routingControlName) { this.routingControlName = routingControlName; } /** *

* The name of the routing control. *

* * @return The name of the routing control. */ public String getRoutingControlName() { return this.routingControlName; } /** *

* The name of the routing control. *

* * @param routingControlName * The name of the routing control. * @return Returns a reference to this object so that method calls can be chained together. */ public RoutingControl withRoutingControlName(String routingControlName) { setRoutingControlName(routingControlName); return this; } /** *

* The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. * When the state is set to OFF, traffic does not flow. *

* * @param routingControlState * The current state of the routing control. When a routing control state is set to ON, traffic flows to a * cell. When the state is set to OFF, traffic does not flow. * @see RoutingControlState */ public void setRoutingControlState(String routingControlState) { this.routingControlState = routingControlState; } /** *

* The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. * When the state is set to OFF, traffic does not flow. *

* * @return The current state of the routing control. When a routing control state is set to ON, traffic flows to a * cell. When the state is set to OFF, traffic does not flow. * @see RoutingControlState */ public String getRoutingControlState() { return this.routingControlState; } /** *

* The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. * When the state is set to OFF, traffic does not flow. *

* * @param routingControlState * The current state of the routing control. When a routing control state is set to ON, traffic flows to a * cell. When the state is set to OFF, traffic does not flow. * @return Returns a reference to this object so that method calls can be chained together. * @see RoutingControlState */ public RoutingControl withRoutingControlState(String routingControlState) { setRoutingControlState(routingControlState); return this; } /** *

* The current state of the routing control. When a routing control state is set to ON, traffic flows to a cell. * When the state is set to OFF, traffic does not flow. *

* * @param routingControlState * The current state of the routing control. When a routing control state is set to ON, traffic flows to a * cell. When the state is set to OFF, traffic does not flow. * @return Returns a reference to this object so that method calls can be chained together. * @see RoutingControlState */ public RoutingControl withRoutingControlState(RoutingControlState routingControlState) { this.routingControlState = routingControlState.toString(); return this; } /** *

* The Amazon Web Services account ID of the routing control owner. *

* * @param owner * The Amazon Web Services account ID of the routing control owner. */ public void setOwner(String owner) { this.owner = owner; } /** *

* The Amazon Web Services account ID of the routing control owner. *

* * @return The Amazon Web Services account ID of the routing control owner. */ public String getOwner() { return this.owner; } /** *

* The Amazon Web Services account ID of the routing control owner. *

* * @param owner * The Amazon Web Services account ID of the routing control owner. * @return Returns a reference to this object so that method calls can be chained together. */ public RoutingControl withOwner(String owner) { setOwner(owner); 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 (getControlPanelArn() != null) sb.append("ControlPanelArn: ").append(getControlPanelArn()).append(","); if (getControlPanelName() != null) sb.append("ControlPanelName: ").append(getControlPanelName()).append(","); if (getRoutingControlArn() != null) sb.append("RoutingControlArn: ").append(getRoutingControlArn()).append(","); if (getRoutingControlName() != null) sb.append("RoutingControlName: ").append(getRoutingControlName()).append(","); if (getRoutingControlState() != null) sb.append("RoutingControlState: ").append(getRoutingControlState()).append(","); if (getOwner() != null) sb.append("Owner: ").append(getOwner()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RoutingControl == false) return false; RoutingControl other = (RoutingControl) obj; if (other.getControlPanelArn() == null ^ this.getControlPanelArn() == null) return false; if (other.getControlPanelArn() != null && other.getControlPanelArn().equals(this.getControlPanelArn()) == false) return false; if (other.getControlPanelName() == null ^ this.getControlPanelName() == null) return false; if (other.getControlPanelName() != null && other.getControlPanelName().equals(this.getControlPanelName()) == false) return false; if (other.getRoutingControlArn() == null ^ this.getRoutingControlArn() == null) return false; if (other.getRoutingControlArn() != null && other.getRoutingControlArn().equals(this.getRoutingControlArn()) == false) return false; if (other.getRoutingControlName() == null ^ this.getRoutingControlName() == null) return false; if (other.getRoutingControlName() != null && other.getRoutingControlName().equals(this.getRoutingControlName()) == false) return false; if (other.getRoutingControlState() == null ^ this.getRoutingControlState() == null) return false; if (other.getRoutingControlState() != null && other.getRoutingControlState().equals(this.getRoutingControlState()) == false) return false; if (other.getOwner() == null ^ this.getOwner() == null) return false; if (other.getOwner() != null && other.getOwner().equals(this.getOwner()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getControlPanelArn() == null) ? 0 : getControlPanelArn().hashCode()); hashCode = prime * hashCode + ((getControlPanelName() == null) ? 0 : getControlPanelName().hashCode()); hashCode = prime * hashCode + ((getRoutingControlArn() == null) ? 0 : getRoutingControlArn().hashCode()); hashCode = prime * hashCode + ((getRoutingControlName() == null) ? 0 : getRoutingControlName().hashCode()); hashCode = prime * hashCode + ((getRoutingControlState() == null) ? 0 : getRoutingControlState().hashCode()); hashCode = prime * hashCode + ((getOwner() == null) ? 0 : getOwner().hashCode()); return hashCode; } @Override public RoutingControl clone() { try { return (RoutingControl) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.route53recoverycluster.model.transform.RoutingControlMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy