/* * 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 resource group to which a Capacity Reservation has been added. *

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

* The ARN of the resource group. *

*/ private String groupArn; /** *

* The ID of the Amazon Web Services account that owns the resource group. *

*/ private String ownerId; /** *

* The ARN of the resource group. *

* * @param groupArn * The ARN of the resource group. */ public void setGroupArn(String groupArn) { this.groupArn = groupArn; } /** *

* The ARN of the resource group. *

* * @return The ARN of the resource group. */ public String getGroupArn() { return this.groupArn; } /** *

* The ARN of the resource group. *

* * @param groupArn * The ARN of the resource group. * @return Returns a reference to this object so that method calls can be chained together. */ public CapacityReservationGroup withGroupArn(String groupArn) { setGroupArn(groupArn); return this; } /** *

* The ID of the Amazon Web Services account that owns the resource group. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the resource group. */ public void setOwnerId(String ownerId) { this.ownerId = ownerId; } /** *

* The ID of the Amazon Web Services account that owns the resource group. *

* * @return The ID of the Amazon Web Services account that owns the resource group. */ public String getOwnerId() { return this.ownerId; } /** *

* The ID of the Amazon Web Services account that owns the resource group. *

* * @param ownerId * The ID of the Amazon Web Services account that owns the resource group. * @return Returns a reference to this object so that method calls can be chained together. */ public CapacityReservationGroup withOwnerId(String ownerId) { setOwnerId(ownerId); 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 (getGroupArn() != null) sb.append("GroupArn: ").append(getGroupArn()).append(","); if (getOwnerId() != null) sb.append("OwnerId: ").append(getOwnerId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CapacityReservationGroup == false) return false; CapacityReservationGroup other = (CapacityReservationGroup) obj; if (other.getGroupArn() == null ^ this.getGroupArn() == null) return false; if (other.getGroupArn() != null && other.getGroupArn().equals(this.getGroupArn()) == false) return false; if (other.getOwnerId() == null ^ this.getOwnerId() == null) return false; if (other.getOwnerId() != null && other.getOwnerId().equals(this.getOwnerId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getGroupArn() == null) ? 0 : getGroupArn().hashCode()); hashCode = prime * hashCode + ((getOwnerId() == null) ? 0 : getOwnerId().hashCode()); return hashCode; } @Override public CapacityReservationGroup clone() { try { return (CapacityReservationGroup) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }