com.amazonaws.services.cleanrooms.model.CollaborationPrivacyBudgetTemplateSummary 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;
/**
*
* A summary of the collaboration's privacy budget template. This summary includes information about who created the
* privacy budget template and what collaborations it belongs to.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CollaborationPrivacyBudgetTemplateSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The unique identifier of the collaboration privacy budget template.
*
*/
private String id;
/**
*
* The ARN of the collaboration privacy budget template.
*
*/
private String arn;
/**
*
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
*
*/
private String collaborationId;
/**
*
* The ARN of the collaboration that contains this collaboration privacy budget template.
*
*/
private String collaborationArn;
/**
*
* The unique identifier of the account that created this collaboration privacy budget template.
*
*/
private String creatorAccountId;
/**
*
* The type of the privacy budget template.
*
*/
private String privacyBudgetType;
/**
*
* The time at which the collaboration privacy budget template was created.
*
*/
private java.util.Date createTime;
/**
*
* The most recent time at which the collaboration privacy budget template was updated.
*
*/
private java.util.Date updateTime;
/**
*
* The unique identifier of the collaboration privacy budget template.
*
*
* @param id
* The unique identifier of the collaboration privacy budget template.
*/
public void setId(String id) {
this.id = id;
}
/**
*
* The unique identifier of the collaboration privacy budget template.
*
*
* @return The unique identifier of the collaboration privacy budget template.
*/
public String getId() {
return this.id;
}
/**
*
* The unique identifier of the collaboration privacy budget template.
*
*
* @param id
* The unique identifier of the collaboration privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withId(String id) {
setId(id);
return this;
}
/**
*
* The ARN of the collaboration privacy budget template.
*
*
* @param arn
* The ARN of the collaboration privacy budget template.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The ARN of the collaboration privacy budget template.
*
*
* @return The ARN of the collaboration privacy budget template.
*/
public String getArn() {
return this.arn;
}
/**
*
* The ARN of the collaboration privacy budget template.
*
*
* @param arn
* The ARN of the collaboration privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
*
*
* @param collaborationId
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
*/
public void setCollaborationId(String collaborationId) {
this.collaborationId = collaborationId;
}
/**
*
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
*
*
* @return The unique identifier of the collaboration that contains this collaboration privacy budget template.
*/
public String getCollaborationId() {
return this.collaborationId;
}
/**
*
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
*
*
* @param collaborationId
* The unique identifier of the collaboration that contains this collaboration privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withCollaborationId(String collaborationId) {
setCollaborationId(collaborationId);
return this;
}
/**
*
* The ARN of the collaboration that contains this collaboration privacy budget template.
*
*
* @param collaborationArn
* The ARN of the collaboration that contains this collaboration privacy budget template.
*/
public void setCollaborationArn(String collaborationArn) {
this.collaborationArn = collaborationArn;
}
/**
*
* The ARN of the collaboration that contains this collaboration privacy budget template.
*
*
* @return The ARN of the collaboration that contains this collaboration privacy budget template.
*/
public String getCollaborationArn() {
return this.collaborationArn;
}
/**
*
* The ARN of the collaboration that contains this collaboration privacy budget template.
*
*
* @param collaborationArn
* The ARN of the collaboration that contains this collaboration privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withCollaborationArn(String collaborationArn) {
setCollaborationArn(collaborationArn);
return this;
}
/**
*
* The unique identifier of the account that created this collaboration privacy budget template.
*
*
* @param creatorAccountId
* The unique identifier of the account that created this collaboration privacy budget template.
*/
public void setCreatorAccountId(String creatorAccountId) {
this.creatorAccountId = creatorAccountId;
}
/**
*
* The unique identifier of the account that created this collaboration privacy budget template.
*
*
* @return The unique identifier of the account that created this collaboration privacy budget template.
*/
public String getCreatorAccountId() {
return this.creatorAccountId;
}
/**
*
* The unique identifier of the account that created this collaboration privacy budget template.
*
*
* @param creatorAccountId
* The unique identifier of the account that created this collaboration privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withCreatorAccountId(String creatorAccountId) {
setCreatorAccountId(creatorAccountId);
return this;
}
/**
*
* The type of the privacy budget template.
*
*
* @param privacyBudgetType
* The type of the privacy budget template.
* @see PrivacyBudgetType
*/
public void setPrivacyBudgetType(String privacyBudgetType) {
this.privacyBudgetType = privacyBudgetType;
}
/**
*
* The type of the privacy budget template.
*
*
* @return The type of the privacy budget template.
* @see PrivacyBudgetType
*/
public String getPrivacyBudgetType() {
return this.privacyBudgetType;
}
/**
*
* The type of the privacy budget template.
*
*
* @param privacyBudgetType
* The type of the privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
* @see PrivacyBudgetType
*/
public CollaborationPrivacyBudgetTemplateSummary withPrivacyBudgetType(String privacyBudgetType) {
setPrivacyBudgetType(privacyBudgetType);
return this;
}
/**
*
* The type of the privacy budget template.
*
*
* @param privacyBudgetType
* The type of the privacy budget template.
* @return Returns a reference to this object so that method calls can be chained together.
* @see PrivacyBudgetType
*/
public CollaborationPrivacyBudgetTemplateSummary withPrivacyBudgetType(PrivacyBudgetType privacyBudgetType) {
this.privacyBudgetType = privacyBudgetType.toString();
return this;
}
/**
*
* The time at which the collaboration privacy budget template was created.
*
*
* @param createTime
* The time at which the collaboration privacy budget template was created.
*/
public void setCreateTime(java.util.Date createTime) {
this.createTime = createTime;
}
/**
*
* The time at which the collaboration privacy budget template was created.
*
*
* @return The time at which the collaboration privacy budget template was created.
*/
public java.util.Date getCreateTime() {
return this.createTime;
}
/**
*
* The time at which the collaboration privacy budget template was created.
*
*
* @param createTime
* The time at which the collaboration privacy budget template was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withCreateTime(java.util.Date createTime) {
setCreateTime(createTime);
return this;
}
/**
*
* The most recent time at which the collaboration privacy budget template was updated.
*
*
* @param updateTime
* The most recent time at which the collaboration privacy budget template was updated.
*/
public void setUpdateTime(java.util.Date updateTime) {
this.updateTime = updateTime;
}
/**
*
* The most recent time at which the collaboration privacy budget template was updated.
*
*
* @return The most recent time at which the collaboration privacy budget template was updated.
*/
public java.util.Date getUpdateTime() {
return this.updateTime;
}
/**
*
* The most recent time at which the collaboration privacy budget template was updated.
*
*
* @param updateTime
* The most recent time at which the collaboration privacy budget template was updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CollaborationPrivacyBudgetTemplateSummary withUpdateTime(java.util.Date updateTime) {
setUpdateTime(updateTime);
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 (getCollaborationId() != null)
sb.append("CollaborationId: ").append(getCollaborationId()).append(",");
if (getCollaborationArn() != null)
sb.append("CollaborationArn: ").append(getCollaborationArn()).append(",");
if (getCreatorAccountId() != null)
sb.append("CreatorAccountId: ").append(getCreatorAccountId()).append(",");
if (getPrivacyBudgetType() != null)
sb.append("PrivacyBudgetType: ").append(getPrivacyBudgetType()).append(",");
if (getCreateTime() != null)
sb.append("CreateTime: ").append(getCreateTime()).append(",");
if (getUpdateTime() != null)
sb.append("UpdateTime: ").append(getUpdateTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CollaborationPrivacyBudgetTemplateSummary == false)
return false;
CollaborationPrivacyBudgetTemplateSummary other = (CollaborationPrivacyBudgetTemplateSummary) 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.getCollaborationId() == null ^ this.getCollaborationId() == null)
return false;
if (other.getCollaborationId() != null && other.getCollaborationId().equals(this.getCollaborationId()) == 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.getCreatorAccountId() == null ^ this.getCreatorAccountId() == null)
return false;
if (other.getCreatorAccountId() != null && other.getCreatorAccountId().equals(this.getCreatorAccountId()) == false)
return false;
if (other.getPrivacyBudgetType() == null ^ this.getPrivacyBudgetType() == null)
return false;
if (other.getPrivacyBudgetType() != null && other.getPrivacyBudgetType().equals(this.getPrivacyBudgetType()) == 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.getUpdateTime() == null ^ this.getUpdateTime() == null)
return false;
if (other.getUpdateTime() != null && other.getUpdateTime().equals(this.getUpdateTime()) == 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 + ((getCollaborationId() == null) ? 0 : getCollaborationId().hashCode());
hashCode = prime * hashCode + ((getCollaborationArn() == null) ? 0 : getCollaborationArn().hashCode());
hashCode = prime * hashCode + ((getCreatorAccountId() == null) ? 0 : getCreatorAccountId().hashCode());
hashCode = prime * hashCode + ((getPrivacyBudgetType() == null) ? 0 : getPrivacyBudgetType().hashCode());
hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
return hashCode;
}
@Override
public CollaborationPrivacyBudgetTemplateSummary clone() {
try {
return (CollaborationPrivacyBudgetTemplateSummary) 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.CollaborationPrivacyBudgetTemplateSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}