com.amazonaws.services.elasticloadbalancingv2.model.LoadBalancerAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-elasticloadbalancingv2 Show documentation
Show all versions of aws-java-sdk-elasticloadbalancingv2 Show documentation
The AWS Java SDK for Elastic Load Balancing module holds the client classes that are used for communicating with Elastic Load Balancing Service (API Version 2015-12-01)
/*
* Copyright 2014-2019 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.elasticloadbalancingv2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Information about a static IP address for a load balancer.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class LoadBalancerAddress implements Serializable, Cloneable {
/**
*
* The static IP address.
*
*/
private String ipAddress;
/**
*
* [Network Load Balancers] The allocation ID of the Elastic IP address.
*
*/
private String allocationId;
/**
*
* The static IP address.
*
*
* @param ipAddress
* The static IP address.
*/
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
/**
*
* The static IP address.
*
*
* @return The static IP address.
*/
public String getIpAddress() {
return this.ipAddress;
}
/**
*
* The static IP address.
*
*
* @param ipAddress
* The static IP address.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LoadBalancerAddress withIpAddress(String ipAddress) {
setIpAddress(ipAddress);
return this;
}
/**
*
* [Network Load Balancers] The allocation ID of the Elastic IP address.
*
*
* @param allocationId
* [Network Load Balancers] The allocation ID of the Elastic IP address.
*/
public void setAllocationId(String allocationId) {
this.allocationId = allocationId;
}
/**
*
* [Network Load Balancers] The allocation ID of the Elastic IP address.
*
*
* @return [Network Load Balancers] The allocation ID of the Elastic IP address.
*/
public String getAllocationId() {
return this.allocationId;
}
/**
*
* [Network Load Balancers] The allocation ID of the Elastic IP address.
*
*
* @param allocationId
* [Network Load Balancers] The allocation ID of the Elastic IP address.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public LoadBalancerAddress withAllocationId(String allocationId) {
setAllocationId(allocationId);
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 (getIpAddress() != null)
sb.append("IpAddress: ").append(getIpAddress()).append(",");
if (getAllocationId() != null)
sb.append("AllocationId: ").append(getAllocationId());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof LoadBalancerAddress == false)
return false;
LoadBalancerAddress other = (LoadBalancerAddress) obj;
if (other.getIpAddress() == null ^ this.getIpAddress() == null)
return false;
if (other.getIpAddress() != null && other.getIpAddress().equals(this.getIpAddress()) == false)
return false;
if (other.getAllocationId() == null ^ this.getAllocationId() == null)
return false;
if (other.getAllocationId() != null && other.getAllocationId().equals(this.getAllocationId()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getIpAddress() == null) ? 0 : getIpAddress().hashCode());
hashCode = prime * hashCode + ((getAllocationId() == null) ? 0 : getAllocationId().hashCode());
return hashCode;
}
@Override
public LoadBalancerAddress clone() {
try {
return (LoadBalancerAddress) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy