/* * 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.iotfleetwise.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about a fleet. *
** You can use the API operation to return this information about multiple fleets. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class FleetSummary implements Serializable, Cloneable, StructuredPojo { /** ** The unique 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 the 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 unique ID of the fleet. *
* * @param id * The unique ID of the fleet. */ public void setId(String id) { this.id = id; } /** ** The unique ID of the fleet. *
* * @return The unique ID of the fleet. */ public String getId() { return this.id; } /** ** The unique ID of the fleet. *
* * @param id * The unique ID of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public FleetSummary 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 FleetSummary 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 FleetSummary withDescription(String description) { setDescription(description); return this; } /** ** The ARN of the signal catalog associated with the fleet. *
* * @param signalCatalogArn * The ARN of the signal catalog associated with the fleet. */ public void setSignalCatalogArn(String signalCatalogArn) { this.signalCatalogArn = signalCatalogArn; } /** ** The ARN of the signal catalog associated with the fleet. *
* * @return The ARN of the signal catalog associated with the fleet. */ public String getSignalCatalogArn() { return this.signalCatalogArn; } /** ** The ARN of the signal catalog associated with the fleet. *
* * @param signalCatalogArn * The ARN of the signal catalog associated with the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public FleetSummary 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 FleetSummary 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 FleetSummary 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 FleetSummary == false) return false; FleetSummary other = (FleetSummary) 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 FleetSummary clone() { try { return (FleetSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.iotfleetwise.model.transform.FleetSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }