/* * 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 address usage for a customer-owned address pool. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CoipAddressUsage implements Serializable, Cloneable { /** ** The allocation ID of the address. *
*/ private String allocationId; /** ** The Amazon Web Services account ID. *
*/ private String awsAccountId; /** ** The Amazon Web Services service. *
*/ private String awsService; /** ** The customer-owned IP address. *
*/ private String coIp; /** ** The allocation ID of the address. *
* * @param allocationId * The allocation ID of the address. */ public void setAllocationId(String allocationId) { this.allocationId = allocationId; } /** ** The allocation ID of the address. *
* * @return The allocation ID of the address. */ public String getAllocationId() { return this.allocationId; } /** ** The allocation ID of the address. *
* * @param allocationId * The allocation ID of the address. * @return Returns a reference to this object so that method calls can be chained together. */ public CoipAddressUsage withAllocationId(String allocationId) { setAllocationId(allocationId); return this; } /** ** The Amazon Web Services account ID. *
* * @param awsAccountId * The Amazon Web Services account ID. */ public void setAwsAccountId(String awsAccountId) { this.awsAccountId = awsAccountId; } /** ** The Amazon Web Services account ID. *
* * @return The Amazon Web Services account ID. */ public String getAwsAccountId() { return this.awsAccountId; } /** ** The Amazon Web Services account ID. *
* * @param awsAccountId * The Amazon Web Services account ID. * @return Returns a reference to this object so that method calls can be chained together. */ public CoipAddressUsage withAwsAccountId(String awsAccountId) { setAwsAccountId(awsAccountId); return this; } /** ** The Amazon Web Services service. *
* * @param awsService * The Amazon Web Services service. */ public void setAwsService(String awsService) { this.awsService = awsService; } /** ** The Amazon Web Services service. *
* * @return The Amazon Web Services service. */ public String getAwsService() { return this.awsService; } /** ** The Amazon Web Services service. *
* * @param awsService * The Amazon Web Services service. * @return Returns a reference to this object so that method calls can be chained together. */ public CoipAddressUsage withAwsService(String awsService) { setAwsService(awsService); return this; } /** ** The customer-owned IP address. *
* * @param coIp * The customer-owned IP address. */ public void setCoIp(String coIp) { this.coIp = coIp; } /** ** The customer-owned IP address. *
* * @return The customer-owned IP address. */ public String getCoIp() { return this.coIp; } /** ** The customer-owned IP address. *
* * @param coIp * The customer-owned IP address. * @return Returns a reference to this object so that method calls can be chained together. */ public CoipAddressUsage withCoIp(String coIp) { setCoIp(coIp); 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 (getAllocationId() != null) sb.append("AllocationId: ").append(getAllocationId()).append(","); if (getAwsAccountId() != null) sb.append("AwsAccountId: ").append(getAwsAccountId()).append(","); if (getAwsService() != null) sb.append("AwsService: ").append(getAwsService()).append(","); if (getCoIp() != null) sb.append("CoIp: ").append(getCoIp()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CoipAddressUsage == false) return false; CoipAddressUsage other = (CoipAddressUsage) obj; if (other.getAllocationId() == null ^ this.getAllocationId() == null) return false; if (other.getAllocationId() != null && other.getAllocationId().equals(this.getAllocationId()) == false) return false; if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null) return false; if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false) return false; if (other.getAwsService() == null ^ this.getAwsService() == null) return false; if (other.getAwsService() != null && other.getAwsService().equals(this.getAwsService()) == false) return false; if (other.getCoIp() == null ^ this.getCoIp() == null) return false; if (other.getCoIp() != null && other.getCoIp().equals(this.getCoIp()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAllocationId() == null) ? 0 : getAllocationId().hashCode()); hashCode = prime * hashCode + ((getAwsAccountId() == null) ? 0 : getAwsAccountId().hashCode()); hashCode = prime * hashCode + ((getAwsService() == null) ? 0 : getAwsService().hashCode()); hashCode = prime * hashCode + ((getCoIp() == null) ? 0 : getCoIp().hashCode()); return hashCode; } @Override public CoipAddressUsage clone() { try { return (CoipAddressUsage) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }