com.amazonaws.services.cleanrooms.model.AnalysisTemplateSummary Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cleanrooms Show documentation
/*
* 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.cleanrooms.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The metadata of the analysis template.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AnalysisTemplateSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the analysis template.
*
*/
private String arn;
/**
*
* The time that the analysis template summary was created.
*
*/
private java.util.Date createTime;
/**
*
* The identifier of the analysis template.
*
*/
private String id;
/**
*
* The name of the analysis template.
*
*/
private String name;
/**
*
* The time that the analysis template summary was last updated.
*
*/
private java.util.Date updateTime;
/**
*
* The Amazon Resource Name (ARN) of the member who created the analysis template.
*
*/
private String membershipArn;
/**
*
* The identifier for a membership resource.
*
*/
private String membershipId;
/**
*
* The unique ARN for the analysis template summary’s associated collaboration.
*
*/
private String collaborationArn;
/**
*
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
*
*/
private String collaborationId;
/**
*
* The description of the analysis template.
*
*/
private String description;
/**
*
* The Amazon Resource Name (ARN) of the analysis template.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the analysis template.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The Amazon Resource Name (ARN) of the analysis template.
*
*
* @return The Amazon Resource Name (ARN) of the analysis template.
*/
public String getArn() {
return this.arn;
}
/**
*
* The Amazon Resource Name (ARN) of the analysis template.
*
*
* @param arn
* The Amazon Resource Name (ARN) of the analysis template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* The time that the analysis template summary was created.
*
*
* @param createTime
* The time that the analysis template summary was created.
*/
public void setCreateTime(java.util.Date createTime) {
this.createTime = createTime;
}
/**
*
* The time that the analysis template summary was created.
*
*
* @return The time that the analysis template summary was created.
*/
public java.util.Date getCreateTime() {
return this.createTime;
}
/**
*
* The time that the analysis template summary was created.
*
*
* @param createTime
* The time that the analysis template summary was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withCreateTime(java.util.Date createTime) {
setCreateTime(createTime);
return this;
}
/**
*
* The identifier of the analysis template.
*
*
* @param id
* The identifier of the analysis template.
*/
public void setId(String id) {
this.id = id;
}
/**
*
* The identifier of the analysis template.
*
*
* @return The identifier of the analysis template.
*/
public String getId() {
return this.id;
}
/**
*
* The identifier of the analysis template.
*
*
* @param id
* The identifier of the analysis template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withId(String id) {
setId(id);
return this;
}
/**
*
* The name of the analysis template.
*
*
* @param name
* The name of the analysis template.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the analysis template.
*
*
* @return The name of the analysis template.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the analysis template.
*
*
* @param name
* The name of the analysis template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withName(String name) {
setName(name);
return this;
}
/**
*
* The time that the analysis template summary was last updated.
*
*
* @param updateTime
* The time that the analysis template summary was last updated.
*/
public void setUpdateTime(java.util.Date updateTime) {
this.updateTime = updateTime;
}
/**
*
* The time that the analysis template summary was last updated.
*
*
* @return The time that the analysis template summary was last updated.
*/
public java.util.Date getUpdateTime() {
return this.updateTime;
}
/**
*
* The time that the analysis template summary was last updated.
*
*
* @param updateTime
* The time that the analysis template summary was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withUpdateTime(java.util.Date updateTime) {
setUpdateTime(updateTime);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the member who created the analysis template.
*
*
* @param membershipArn
* The Amazon Resource Name (ARN) of the member who created the analysis template.
*/
public void setMembershipArn(String membershipArn) {
this.membershipArn = membershipArn;
}
/**
*
* The Amazon Resource Name (ARN) of the member who created the analysis template.
*
*
* @return The Amazon Resource Name (ARN) of the member who created the analysis template.
*/
public String getMembershipArn() {
return this.membershipArn;
}
/**
*
* The Amazon Resource Name (ARN) of the member who created the analysis template.
*
*
* @param membershipArn
* The Amazon Resource Name (ARN) of the member who created the analysis template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withMembershipArn(String membershipArn) {
setMembershipArn(membershipArn);
return this;
}
/**
*
* The identifier for a membership resource.
*
*
* @param membershipId
* The identifier for a membership resource.
*/
public void setMembershipId(String membershipId) {
this.membershipId = membershipId;
}
/**
*
* The identifier for a membership resource.
*
*
* @return The identifier for a membership resource.
*/
public String getMembershipId() {
return this.membershipId;
}
/**
*
* The identifier for a membership resource.
*
*
* @param membershipId
* The identifier for a membership resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withMembershipId(String membershipId) {
setMembershipId(membershipId);
return this;
}
/**
*
* The unique ARN for the analysis template summary’s associated collaboration.
*
*
* @param collaborationArn
* The unique ARN for the analysis template summary’s associated collaboration.
*/
public void setCollaborationArn(String collaborationArn) {
this.collaborationArn = collaborationArn;
}
/**
*
* The unique ARN for the analysis template summary’s associated collaboration.
*
*
* @return The unique ARN for the analysis template summary’s associated collaboration.
*/
public String getCollaborationArn() {
return this.collaborationArn;
}
/**
*
* The unique ARN for the analysis template summary’s associated collaboration.
*
*
* @param collaborationArn
* The unique ARN for the analysis template summary’s associated collaboration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withCollaborationArn(String collaborationArn) {
setCollaborationArn(collaborationArn);
return this;
}
/**
*
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
*
*
* @param collaborationId
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
*/
public void setCollaborationId(String collaborationId) {
this.collaborationId = collaborationId;
}
/**
*
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
*
*
* @return A unique identifier for the collaboration that the analysis template summary belongs to. Currently
* accepts collaboration ID.
*/
public String getCollaborationId() {
return this.collaborationId;
}
/**
*
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
*
*
* @param collaborationId
* A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts
* collaboration ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withCollaborationId(String collaborationId) {
setCollaborationId(collaborationId);
return this;
}
/**
*
* The description of the analysis template.
*
*
* @param description
* The description of the analysis template.
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* The description of the analysis template.
*
*
* @return The description of the analysis template.
*/
public String getDescription() {
return this.description;
}
/**
*
* The description of the analysis template.
*
*
* @param description
* The description of the analysis template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AnalysisTemplateSummary withDescription(String description) {
setDescription(description);
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 (getCreateTime() != null)
sb.append("CreateTime: ").append(getCreateTime()).append(",");
if (getId() != null)
sb.append("Id: ").append(getId()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getUpdateTime() != null)
sb.append("UpdateTime: ").append(getUpdateTime()).append(",");
if (getMembershipArn() != null)
sb.append("MembershipArn: ").append(getMembershipArn()).append(",");
if (getMembershipId() != null)
sb.append("MembershipId: ").append(getMembershipId()).append(",");
if (getCollaborationArn() != null)
sb.append("CollaborationArn: ").append(getCollaborationArn()).append(",");
if (getCollaborationId() != null)
sb.append("CollaborationId: ").append(getCollaborationId()).append(",");
if (getDescription() != null)
sb.append("Description: ").append(getDescription());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AnalysisTemplateSummary == false)
return false;
AnalysisTemplateSummary other = (AnalysisTemplateSummary) obj;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
if (other.getCreateTime() == null ^ this.getCreateTime() == null)
return false;
if (other.getCreateTime() != null && other.getCreateTime().equals(this.getCreateTime()) == false)
return false;
if (other.getId() == null ^ this.getId() == null)
return false;
if (other.getId() != null && other.getId().equals(this.getId()) == 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.getUpdateTime() == null ^ this.getUpdateTime() == null)
return false;
if (other.getUpdateTime() != null && other.getUpdateTime().equals(this.getUpdateTime()) == false)
return false;
if (other.getMembershipArn() == null ^ this.getMembershipArn() == null)
return false;
if (other.getMembershipArn() != null && other.getMembershipArn().equals(this.getMembershipArn()) == false)
return false;
if (other.getMembershipId() == null ^ this.getMembershipId() == null)
return false;
if (other.getMembershipId() != null && other.getMembershipId().equals(this.getMembershipId()) == false)
return false;
if (other.getCollaborationArn() == null ^ this.getCollaborationArn() == null)
return false;
if (other.getCollaborationArn() != null && other.getCollaborationArn().equals(this.getCollaborationArn()) == false)
return false;
if (other.getCollaborationId() == null ^ this.getCollaborationId() == null)
return false;
if (other.getCollaborationId() != null && other.getCollaborationId().equals(this.getCollaborationId()) == false)
return false;
if (other.getDescription() == null ^ this.getDescription() == null)
return false;
if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == 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 + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
hashCode = prime * hashCode + ((getMembershipArn() == null) ? 0 : getMembershipArn().hashCode());
hashCode = prime * hashCode + ((getMembershipId() == null) ? 0 : getMembershipId().hashCode());
hashCode = prime * hashCode + ((getCollaborationArn() == null) ? 0 : getCollaborationArn().hashCode());
hashCode = prime * hashCode + ((getCollaborationId() == null) ? 0 : getCollaborationId().hashCode());
hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode());
return hashCode;
}
@Override
public AnalysisTemplateSummary clone() {
try {
return (AnalysisTemplateSummary) 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.cleanrooms.model.transform.AnalysisTemplateSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}