* The ID of the fleet. *
*/ private String id; /** ** The Amazon Resource Name (ARN) of the fleet. *
*/ private String arn; /** ** A brief description of the fleet. *
*/ private String description; /** ** The ARN of a signal catalog associated with the fleet. *
*/ private String signalCatalogArn; /** ** The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). *
*/ private java.util.Date creationTime; /** ** The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). *
*/ private java.util.Date lastModificationTime; /** ** The ID of the fleet. *
* * @param id * The ID of the fleet. */ public void setId(String id) { this.id = id; } /** ** The ID of the fleet. *
* * @return The ID of the fleet. */ public String getId() { return this.id; } /** ** The ID of the fleet. *
* * @param id * The ID of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withId(String id) { setId(id); return this; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param arn * The Amazon Resource Name (ARN) of the fleet. */ public void setArn(String arn) { this.arn = arn; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @return The Amazon Resource Name (ARN) of the fleet. */ public String getArn() { return this.arn; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param arn * The Amazon Resource Name (ARN) of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withArn(String arn) { setArn(arn); return this; } /** ** A brief description of the fleet. *
* * @param description * A brief description of the fleet. */ public void setDescription(String description) { this.description = description; } /** ** A brief description of the fleet. *
* * @return A brief description of the fleet. */ public String getDescription() { return this.description; } /** ** A brief description of the fleet. *
* * @param description * A brief description of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withDescription(String description) { setDescription(description); return this; } /** ** The ARN of a signal catalog associated with the fleet. *
* * @param signalCatalogArn * The ARN of a signal catalog associated with the fleet. */ public void setSignalCatalogArn(String signalCatalogArn) { this.signalCatalogArn = signalCatalogArn; } /** ** The ARN of a signal catalog associated with the fleet. *
* * @return The ARN of a signal catalog associated with the fleet. */ public String getSignalCatalogArn() { return this.signalCatalogArn; } /** ** The ARN of a signal catalog associated with the fleet. *
* * @param signalCatalogArn * The ARN of a signal catalog associated with the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withSignalCatalogArn(String signalCatalogArn) { setSignalCatalogArn(signalCatalogArn); return this; } /** ** The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @param creationTime * The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** ** The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @return The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). */ public java.util.Date getCreationTime() { return this.creationTime; } /** ** The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @param creationTime * The time the fleet was created in seconds since epoch (January 1, 1970 at midnight UTC time). * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** ** The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @param lastModificationTime * The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). */ public void setLastModificationTime(java.util.Date lastModificationTime) { this.lastModificationTime = lastModificationTime; } /** ** The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @return The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). */ public java.util.Date getLastModificationTime() { return this.lastModificationTime; } /** ** The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). *
* * @param lastModificationTime * The time the fleet was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). * @return Returns a reference to this object so that method calls can be chained together. */ public GetFleetResult withLastModificationTime(java.util.Date lastModificationTime) { setLastModificationTime(lastModificationTime); 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 (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getSignalCatalogArn() != null) sb.append("SignalCatalogArn: ").append(getSignalCatalogArn()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastModificationTime() != null) sb.append("LastModificationTime: ").append(getLastModificationTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetFleetResult == false) return false; GetFleetResult other = (GetFleetResult) obj; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getSignalCatalogArn() == null ^ this.getSignalCatalogArn() == null) return false; if (other.getSignalCatalogArn() != null && other.getSignalCatalogArn().equals(this.getSignalCatalogArn()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getLastModificationTime() == null ^ this.getLastModificationTime() == null) return false; if (other.getLastModificationTime() != null && other.getLastModificationTime().equals(this.getLastModificationTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getSignalCatalogArn() == null) ? 0 : getSignalCatalogArn().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastModificationTime() == null) ? 0 : getLastModificationTime().hashCode()); return hashCode; } @Override public GetFleetResult clone() { try { return (GetFleetResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }