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

com.amazonaws.services.quicksight.model.TemplateSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon QuickSight module holds the client classes that are used for communicating with Amazon QuickSight Service

There is a newer version: 1.12.780
Show newest version
/*
 * 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.quicksight.model;

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

/**
 * 

* The template summary. *

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

* A summary of a template. *

*/ private String arn; /** *

* The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. *

*/ private String templateId; /** *

* A display name for the template. *

*/ private String name; /** *

* A structure containing a list of version numbers for the template summary. *

*/ private Long latestVersionNumber; /** *

* The last time that this template was created. *

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

* The last time that this template was updated. *

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

* A summary of a template. *

* * @param arn * A summary of a template. */ public void setArn(String arn) { this.arn = arn; } /** *

* A summary of a template. *

* * @return A summary of a template. */ public String getArn() { return this.arn; } /** *

* A summary of a template. *

* * @param arn * A summary of a template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withArn(String arn) { setArn(arn); return this; } /** *

* The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. *

* * @param templateId * The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services * account. */ public void setTemplateId(String templateId) { this.templateId = templateId; } /** *

* The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. *

* * @return The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services * account. */ public String getTemplateId() { return this.templateId; } /** *

* The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. *

* * @param templateId * The ID of the template. This ID is unique per Amazon Web Services Region for each Amazon Web Services * account. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withTemplateId(String templateId) { setTemplateId(templateId); return this; } /** *

* A display name for the template. *

* * @param name * A display name for the template. */ public void setName(String name) { this.name = name; } /** *

* A display name for the template. *

* * @return A display name for the template. */ public String getName() { return this.name; } /** *

* A display name for the template. *

* * @param name * A display name for the template. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withName(String name) { setName(name); return this; } /** *

* A structure containing a list of version numbers for the template summary. *

* * @param latestVersionNumber * A structure containing a list of version numbers for the template summary. */ public void setLatestVersionNumber(Long latestVersionNumber) { this.latestVersionNumber = latestVersionNumber; } /** *

* A structure containing a list of version numbers for the template summary. *

* * @return A structure containing a list of version numbers for the template summary. */ public Long getLatestVersionNumber() { return this.latestVersionNumber; } /** *

* A structure containing a list of version numbers for the template summary. *

* * @param latestVersionNumber * A structure containing a list of version numbers for the template summary. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withLatestVersionNumber(Long latestVersionNumber) { setLatestVersionNumber(latestVersionNumber); return this; } /** *

* The last time that this template was created. *

* * @param createdTime * The last time that this template was created. */ public void setCreatedTime(java.util.Date createdTime) { this.createdTime = createdTime; } /** *

* The last time that this template was created. *

* * @return The last time that this template was created. */ public java.util.Date getCreatedTime() { return this.createdTime; } /** *

* The last time that this template was created. *

* * @param createdTime * The last time that this template was created. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withCreatedTime(java.util.Date createdTime) { setCreatedTime(createdTime); return this; } /** *

* The last time that this template was updated. *

* * @param lastUpdatedTime * The last time that this template was updated. */ public void setLastUpdatedTime(java.util.Date lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** *

* The last time that this template was updated. *

* * @return The last time that this template was updated. */ public java.util.Date getLastUpdatedTime() { return this.lastUpdatedTime; } /** *

* The last time that this template was updated. *

* * @param lastUpdatedTime * The last time that this template was updated. * @return Returns a reference to this object so that method calls can be chained together. */ public TemplateSummary withLastUpdatedTime(java.util.Date lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); 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 (getTemplateId() != null) sb.append("TemplateId: ").append(getTemplateId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getLatestVersionNumber() != null) sb.append("LatestVersionNumber: ").append(getLatestVersionNumber()).append(","); if (getCreatedTime() != null) sb.append("CreatedTime: ").append(getCreatedTime()).append(","); if (getLastUpdatedTime() != null) sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TemplateSummary == false) return false; TemplateSummary other = (TemplateSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getTemplateId() == null ^ this.getTemplateId() == null) return false; if (other.getTemplateId() != null && other.getTemplateId().equals(this.getTemplateId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getLatestVersionNumber() == null ^ this.getLatestVersionNumber() == null) return false; if (other.getLatestVersionNumber() != null && other.getLatestVersionNumber().equals(this.getLatestVersionNumber()) == false) return false; if (other.getCreatedTime() == null ^ this.getCreatedTime() == null) return false; if (other.getCreatedTime() != null && other.getCreatedTime().equals(this.getCreatedTime()) == false) return false; if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null) return false; if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == 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 + ((getTemplateId() == null) ? 0 : getTemplateId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getLatestVersionNumber() == null) ? 0 : getLatestVersionNumber().hashCode()); hashCode = prime * hashCode + ((getCreatedTime() == null) ? 0 : getCreatedTime().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode()); return hashCode; } @Override public TemplateSummary clone() { try { return (TemplateSummary) 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.quicksight.model.transform.TemplateSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy