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

com.amazonaws.services.ec2.model.AnalysisLoadBalancerTarget Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
Show newest version
/*
 * 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.ec2.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Describes a load balancer target. *

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

* The IP address. *

*/ private String address; /** *

* The Availability Zone. *

*/ private String availabilityZone; /** *

* Information about the instance. *

*/ private AnalysisComponent instance; /** *

* The port on which the target is listening. *

*/ private Integer port; /** *

* The IP address. *

* * @param address * The IP address. */ public void setAddress(String address) { this.address = address; } /** *

* The IP address. *

* * @return The IP address. */ public String getAddress() { return this.address; } /** *

* The IP address. *

* * @param address * The IP address. * @return Returns a reference to this object so that method calls can be chained together. */ public AnalysisLoadBalancerTarget withAddress(String address) { setAddress(address); return this; } /** *

* The Availability Zone. *

* * @param availabilityZone * The Availability Zone. */ public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } /** *

* The Availability Zone. *

* * @return The Availability Zone. */ public String getAvailabilityZone() { return this.availabilityZone; } /** *

* The Availability Zone. *

* * @param availabilityZone * The Availability Zone. * @return Returns a reference to this object so that method calls can be chained together. */ public AnalysisLoadBalancerTarget withAvailabilityZone(String availabilityZone) { setAvailabilityZone(availabilityZone); return this; } /** *

* Information about the instance. *

* * @param instance * Information about the instance. */ public void setInstance(AnalysisComponent instance) { this.instance = instance; } /** *

* Information about the instance. *

* * @return Information about the instance. */ public AnalysisComponent getInstance() { return this.instance; } /** *

* Information about the instance. *

* * @param instance * Information about the instance. * @return Returns a reference to this object so that method calls can be chained together. */ public AnalysisLoadBalancerTarget withInstance(AnalysisComponent instance) { setInstance(instance); return this; } /** *

* The port on which the target is listening. *

* * @param port * The port on which the target is listening. */ public void setPort(Integer port) { this.port = port; } /** *

* The port on which the target is listening. *

* * @return The port on which the target is listening. */ public Integer getPort() { return this.port; } /** *

* The port on which the target is listening. *

* * @param port * The port on which the target is listening. * @return Returns a reference to this object so that method calls can be chained together. */ public AnalysisLoadBalancerTarget withPort(Integer port) { setPort(port); 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 (getAddress() != null) sb.append("Address: ").append(getAddress()).append(","); if (getAvailabilityZone() != null) sb.append("AvailabilityZone: ").append(getAvailabilityZone()).append(","); if (getInstance() != null) sb.append("Instance: ").append(getInstance()).append(","); if (getPort() != null) sb.append("Port: ").append(getPort()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AnalysisLoadBalancerTarget == false) return false; AnalysisLoadBalancerTarget other = (AnalysisLoadBalancerTarget) obj; if (other.getAddress() == null ^ this.getAddress() == null) return false; if (other.getAddress() != null && other.getAddress().equals(this.getAddress()) == false) return false; if (other.getAvailabilityZone() == null ^ this.getAvailabilityZone() == null) return false; if (other.getAvailabilityZone() != null && other.getAvailabilityZone().equals(this.getAvailabilityZone()) == false) return false; if (other.getInstance() == null ^ this.getInstance() == null) return false; if (other.getInstance() != null && other.getInstance().equals(this.getInstance()) == false) return false; if (other.getPort() == null ^ this.getPort() == null) return false; if (other.getPort() != null && other.getPort().equals(this.getPort()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAddress() == null) ? 0 : getAddress().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZone() == null) ? 0 : getAvailabilityZone().hashCode()); hashCode = prime * hashCode + ((getInstance() == null) ? 0 : getInstance().hashCode()); hashCode = prime * hashCode + ((getPort() == null) ? 0 : getPort().hashCode()); return hashCode; } @Override public AnalysisLoadBalancerTarget clone() { try { return (AnalysisLoadBalancerTarget) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy