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

com.amazonaws.services.elasticloadbalancingv2.model.SubnetMapping 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 subnet mapping. *

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

* The ID of the subnet. *

*/ private String subnetId; /** *

* [Network Load Balancers] The allocation ID of the Elastic IP address for an internet-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 ID of the subnet. *

* * @param subnetId * The ID of the subnet. */ public void setSubnetId(String subnetId) { this.subnetId = subnetId; } /** *

* The ID of the subnet. *

* * @return The ID of the subnet. */ public String getSubnetId() { return this.subnetId; } /** *

* The ID of the subnet. *

* * @param subnetId * The ID of the subnet. * @return Returns a reference to this object so that method calls can be chained together. */ public SubnetMapping withSubnetId(String subnetId) { setSubnetId(subnetId); return this; } /** *

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

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

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

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

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

* * @param allocationId * [Network Load Balancers] The allocation ID of the Elastic IP address for an internet-facing load balancer. * @return Returns a reference to this object so that method calls can be chained together. */ public SubnetMapping 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 SubnetMapping 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 SubnetMapping 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 (getSubnetId() != null) sb.append("SubnetId: ").append(getSubnetId()).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 SubnetMapping == false) return false; SubnetMapping other = (SubnetMapping) obj; if (other.getSubnetId() == null ^ this.getSubnetId() == null) return false; if (other.getSubnetId() != null && other.getSubnetId().equals(this.getSubnetId()) == 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 + ((getSubnetId() == null) ? 0 : getSubnetId().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 SubnetMapping clone() { try { return (SubnetMapping) 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