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

com.amazonaws.services.elasticloadbalancingv2.model.LoadBalancerAddress Maven / Gradle / Ivy

Go to download

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)

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.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 for an internal-facing load balancer. *

*/ private String allocationId; /** *

* [Network Load Balancers] The private IPv4 address for an internal load balancer. *

*/ private String privateIPv4Address; /** *

* [Network Load Balancers] The IPv6 address. *

*/ private String iPv6Address; /** *

* 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 for an internal-facing load balancer. *

* * @param allocationId * [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer. */ public void setAllocationId(String allocationId) { this.allocationId = allocationId; } /** *

* [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer. *

* * @return [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load * balancer. */ public String getAllocationId() { return this.allocationId; } /** *

* [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer. *

* * @param allocationId * [Network Load Balancers] The allocation ID of the Elastic IP address for an internal-facing load balancer. * @return Returns a reference to this object so that method calls can be chained together. */ public LoadBalancerAddress withAllocationId(String allocationId) { setAllocationId(allocationId); return this; } /** *

* [Network Load Balancers] The private IPv4 address for an internal load balancer. *

* * @param privateIPv4Address * [Network Load Balancers] The private IPv4 address for an internal load balancer. */ public void setPrivateIPv4Address(String privateIPv4Address) { this.privateIPv4Address = privateIPv4Address; } /** *

* [Network Load Balancers] The private IPv4 address for an internal load balancer. *

* * @return [Network Load Balancers] The private IPv4 address for an internal load balancer. */ public String getPrivateIPv4Address() { return this.privateIPv4Address; } /** *

* [Network Load Balancers] The private IPv4 address for an internal load balancer. *

* * @param privateIPv4Address * [Network Load Balancers] The private IPv4 address for an internal load balancer. * @return Returns a reference to this object so that method calls can be chained together. */ public LoadBalancerAddress withPrivateIPv4Address(String privateIPv4Address) { setPrivateIPv4Address(privateIPv4Address); return this; } /** *

* [Network Load Balancers] The IPv6 address. *

* * @param iPv6Address * [Network Load Balancers] The IPv6 address. */ public void setIPv6Address(String iPv6Address) { this.iPv6Address = iPv6Address; } /** *

* [Network Load Balancers] The IPv6 address. *

* * @return [Network Load Balancers] The IPv6 address. */ public String getIPv6Address() { return this.iPv6Address; } /** *

* [Network Load Balancers] The IPv6 address. *

* * @param iPv6Address * [Network Load Balancers] The IPv6 address. * @return Returns a reference to this object so that method calls can be chained together. */ public LoadBalancerAddress withIPv6Address(String iPv6Address) { setIPv6Address(iPv6Address); 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()).append(","); if (getPrivateIPv4Address() != null) sb.append("PrivateIPv4Address: ").append(getPrivateIPv4Address()).append(","); if (getIPv6Address() != null) sb.append("IPv6Address: ").append(getIPv6Address()); 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; if (other.getPrivateIPv4Address() == null ^ this.getPrivateIPv4Address() == null) return false; if (other.getPrivateIPv4Address() != null && other.getPrivateIPv4Address().equals(this.getPrivateIPv4Address()) == false) return false; if (other.getIPv6Address() == null ^ this.getIPv6Address() == null) return false; if (other.getIPv6Address() != null && other.getIPv6Address().equals(this.getIPv6Address()) == 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()); hashCode = prime * hashCode + ((getPrivateIPv4Address() == null) ? 0 : getPrivateIPv4Address().hashCode()); hashCode = prime * hashCode + ((getIPv6Address() == null) ? 0 : getIPv6Address().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