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

com.amazonaws.services.iot1clickprojects.model.ProjectSummary Maven / Gradle / Ivy

/*
 * 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.iot1clickprojects.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* An object providing summary information for a particular project for an associated AWS account and region. *

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

* The ARN of the project. *

*/ private String arn; /** *

* The name of the project being summarized. *

*/ private String projectName; /** *

* The date when the project was originally created, in UNIX epoch time format. *

*/ private java.util.Date createdDate; /** *

* The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then * createdDate and updatedDate are the same. *

*/ private java.util.Date updatedDate; /** *

* The tags (metadata key/value pairs) associated with the project. *

*/ private java.util.Map tags; /** *

* The ARN of the project. *

* * @param arn * The ARN of the project. */ public void setArn(String arn) { this.arn = arn; } /** *

* The ARN of the project. *

* * @return The ARN of the project. */ public String getArn() { return this.arn; } /** *

* The ARN of the project. *

* * @param arn * The ARN of the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withArn(String arn) { setArn(arn); return this; } /** *

* The name of the project being summarized. *

* * @param projectName * The name of the project being summarized. */ public void setProjectName(String projectName) { this.projectName = projectName; } /** *

* The name of the project being summarized. *

* * @return The name of the project being summarized. */ public String getProjectName() { return this.projectName; } /** *

* The name of the project being summarized. *

* * @param projectName * The name of the project being summarized. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withProjectName(String projectName) { setProjectName(projectName); return this; } /** *

* The date when the project was originally created, in UNIX epoch time format. *

* * @param createdDate * The date when the project was originally created, in UNIX epoch time format. */ public void setCreatedDate(java.util.Date createdDate) { this.createdDate = createdDate; } /** *

* The date when the project was originally created, in UNIX epoch time format. *

* * @return The date when the project was originally created, in UNIX epoch time format. */ public java.util.Date getCreatedDate() { return this.createdDate; } /** *

* The date when the project was originally created, in UNIX epoch time format. *

* * @param createdDate * The date when the project was originally created, in UNIX epoch time format. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withCreatedDate(java.util.Date createdDate) { setCreatedDate(createdDate); return this; } /** *

* The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then * createdDate and updatedDate are the same. *

* * @param updatedDate * The date when the project was last updated, in UNIX epoch time format. If the project was not updated, * then createdDate and updatedDate are the same. */ public void setUpdatedDate(java.util.Date updatedDate) { this.updatedDate = updatedDate; } /** *

* The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then * createdDate and updatedDate are the same. *

* * @return The date when the project was last updated, in UNIX epoch time format. If the project was not updated, * then createdDate and updatedDate are the same. */ public java.util.Date getUpdatedDate() { return this.updatedDate; } /** *

* The date when the project was last updated, in UNIX epoch time format. If the project was not updated, then * createdDate and updatedDate are the same. *

* * @param updatedDate * The date when the project was last updated, in UNIX epoch time format. If the project was not updated, * then createdDate and updatedDate are the same. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withUpdatedDate(java.util.Date updatedDate) { setUpdatedDate(updatedDate); return this; } /** *

* The tags (metadata key/value pairs) associated with the project. *

* * @return The tags (metadata key/value pairs) associated with the project. */ public java.util.Map getTags() { return tags; } /** *

* The tags (metadata key/value pairs) associated with the project. *

* * @param tags * The tags (metadata key/value pairs) associated with the project. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* The tags (metadata key/value pairs) associated with the project. *

* * @param tags * The tags (metadata key/value pairs) associated with the project. * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see ProjectSummary#withTags * @returns a reference to this object so that method calls can be chained together. */ public ProjectSummary addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap(); } if (this.tags.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.tags.put(key, value); return this; } /** * Removes all the entries added into Tags. * * @return Returns a reference to this object so that method calls can be chained together. */ public ProjectSummary clearTagsEntries() { this.tags = null; 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getProjectName() != null) sb.append("ProjectName: ").append(getProjectName()).append(","); if (getCreatedDate() != null) sb.append("CreatedDate: ").append(getCreatedDate()).append(","); if (getUpdatedDate() != null) sb.append("UpdatedDate: ").append(getUpdatedDate()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ProjectSummary == false) return false; ProjectSummary other = (ProjectSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getProjectName() == null ^ this.getProjectName() == null) return false; if (other.getProjectName() != null && other.getProjectName().equals(this.getProjectName()) == false) return false; if (other.getCreatedDate() == null ^ this.getCreatedDate() == null) return false; if (other.getCreatedDate() != null && other.getCreatedDate().equals(this.getCreatedDate()) == false) return false; if (other.getUpdatedDate() == null ^ this.getUpdatedDate() == null) return false; if (other.getUpdatedDate() != null && other.getUpdatedDate().equals(this.getUpdatedDate()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getProjectName() == null) ? 0 : getProjectName().hashCode()); hashCode = prime * hashCode + ((getCreatedDate() == null) ? 0 : getCreatedDate().hashCode()); hashCode = prime * hashCode + ((getUpdatedDate() == null) ? 0 : getUpdatedDate().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public ProjectSummary clone() { try { return (ProjectSummary) 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.iot1clickprojects.model.transform.ProjectSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy