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

com.amazonaws.services.cleanrooms.model.IdMappingTableSummary Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.778
Show newest version
/*
 * 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;

/**
 * 

* Detailed information about the ID mapping table. *

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

* The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. *

*/ private String collaborationArn; /** *

* The unique identifier of the collaboration that contains this ID mapping table. *

*/ private String collaborationId; /** *

* The unique identifier of the membership resource for this ID mapping table. *

*/ private String membershipId; /** *

* The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. *

*/ private String membershipArn; /** *

* The time at which this ID mapping table was created. *

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

* The most recent time at which this ID mapping table was updated. *

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

* The unique identifier of this ID mapping table. *

*/ private String id; /** *

* The Amazon Resource Name (ARN) of this ID mapping table. *

*/ private String arn; /** *

* The description of this ID mapping table. *

*/ private String description; /** *

* The input reference configuration for the ID mapping table. *

*/ private IdMappingTableInputReferenceConfig inputReferenceConfig; /** *

* The name of this ID mapping table. *

*/ private String name; /** *

* The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. *

* * @param collaborationArn * The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. */ public void setCollaborationArn(String collaborationArn) { this.collaborationArn = collaborationArn; } /** *

* The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. *

* * @return The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. */ public String getCollaborationArn() { return this.collaborationArn; } /** *

* The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. *

* * @param collaborationArn * The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withCollaborationArn(String collaborationArn) { setCollaborationArn(collaborationArn); return this; } /** *

* The unique identifier of the collaboration that contains this ID mapping table. *

* * @param collaborationId * The unique identifier of the collaboration that contains this ID mapping table. */ public void setCollaborationId(String collaborationId) { this.collaborationId = collaborationId; } /** *

* The unique identifier of the collaboration that contains this ID mapping table. *

* * @return The unique identifier of the collaboration that contains this ID mapping table. */ public String getCollaborationId() { return this.collaborationId; } /** *

* The unique identifier of the collaboration that contains this ID mapping table. *

* * @param collaborationId * The unique identifier of the collaboration that contains this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withCollaborationId(String collaborationId) { setCollaborationId(collaborationId); return this; } /** *

* The unique identifier of the membership resource for this ID mapping table. *

* * @param membershipId * The unique identifier of the membership resource for this ID mapping table. */ public void setMembershipId(String membershipId) { this.membershipId = membershipId; } /** *

* The unique identifier of the membership resource for this ID mapping table. *

* * @return The unique identifier of the membership resource for this ID mapping table. */ public String getMembershipId() { return this.membershipId; } /** *

* The unique identifier of the membership resource for this ID mapping table. *

* * @param membershipId * The unique identifier of the membership resource for this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withMembershipId(String membershipId) { setMembershipId(membershipId); return this; } /** *

* The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. *

* * @param membershipArn * The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. */ public void setMembershipArn(String membershipArn) { this.membershipArn = membershipArn; } /** *

* The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. *

* * @return The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. */ public String getMembershipArn() { return this.membershipArn; } /** *

* The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. *

* * @param membershipArn * The Amazon Resource Name (ARN) of the membership resource for this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withMembershipArn(String membershipArn) { setMembershipArn(membershipArn); return this; } /** *

* The time at which this ID mapping table was created. *

* * @param createTime * The time at which this ID mapping table was created. */ public void setCreateTime(java.util.Date createTime) { this.createTime = createTime; } /** *

* The time at which this ID mapping table was created. *

* * @return The time at which this ID mapping table was created. */ public java.util.Date getCreateTime() { return this.createTime; } /** *

* The time at which this ID mapping table was created. *

* * @param createTime * The time at which this ID mapping table was created. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withCreateTime(java.util.Date createTime) { setCreateTime(createTime); return this; } /** *

* The most recent time at which this ID mapping table was updated. *

* * @param updateTime * The most recent time at which this ID mapping table was updated. */ public void setUpdateTime(java.util.Date updateTime) { this.updateTime = updateTime; } /** *

* The most recent time at which this ID mapping table was updated. *

* * @return The most recent time at which this ID mapping table was updated. */ public java.util.Date getUpdateTime() { return this.updateTime; } /** *

* The most recent time at which this ID mapping table was updated. *

* * @param updateTime * The most recent time at which this ID mapping table was updated. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withUpdateTime(java.util.Date updateTime) { setUpdateTime(updateTime); return this; } /** *

* The unique identifier of this ID mapping table. *

* * @param id * The unique identifier of this ID mapping table. */ public void setId(String id) { this.id = id; } /** *

* The unique identifier of this ID mapping table. *

* * @return The unique identifier of this ID mapping table. */ public String getId() { return this.id; } /** *

* The unique identifier of this ID mapping table. *

* * @param id * The unique identifier of this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withId(String id) { setId(id); return this; } /** *

* The Amazon Resource Name (ARN) of this ID mapping table. *

* * @param arn * The Amazon Resource Name (ARN) of this ID mapping table. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of this ID mapping table. *

* * @return The Amazon Resource Name (ARN) of this ID mapping table. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of this ID mapping table. *

* * @param arn * The Amazon Resource Name (ARN) of this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withArn(String arn) { setArn(arn); return this; } /** *

* The description of this ID mapping table. *

* * @param description * The description of this ID mapping table. */ public void setDescription(String description) { this.description = description; } /** *

* The description of this ID mapping table. *

* * @return The description of this ID mapping table. */ public String getDescription() { return this.description; } /** *

* The description of this ID mapping table. *

* * @param description * The description of this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withDescription(String description) { setDescription(description); return this; } /** *

* The input reference configuration for the ID mapping table. *

* * @param inputReferenceConfig * The input reference configuration for the ID mapping table. */ public void setInputReferenceConfig(IdMappingTableInputReferenceConfig inputReferenceConfig) { this.inputReferenceConfig = inputReferenceConfig; } /** *

* The input reference configuration for the ID mapping table. *

* * @return The input reference configuration for the ID mapping table. */ public IdMappingTableInputReferenceConfig getInputReferenceConfig() { return this.inputReferenceConfig; } /** *

* The input reference configuration for the ID mapping table. *

* * @param inputReferenceConfig * The input reference configuration for the ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withInputReferenceConfig(IdMappingTableInputReferenceConfig inputReferenceConfig) { setInputReferenceConfig(inputReferenceConfig); return this; } /** *

* The name of this ID mapping table. *

* * @param name * The name of this ID mapping table. */ public void setName(String name) { this.name = name; } /** *

* The name of this ID mapping table. *

* * @return The name of this ID mapping table. */ public String getName() { return this.name; } /** *

* The name of this ID mapping table. *

* * @param name * The name of this ID mapping table. * @return Returns a reference to this object so that method calls can be chained together. */ public IdMappingTableSummary withName(String name) { setName(name); 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 (getCollaborationArn() != null) sb.append("CollaborationArn: ").append(getCollaborationArn()).append(","); if (getCollaborationId() != null) sb.append("CollaborationId: ").append(getCollaborationId()).append(","); if (getMembershipId() != null) sb.append("MembershipId: ").append(getMembershipId()).append(","); if (getMembershipArn() != null) sb.append("MembershipArn: ").append(getMembershipArn()).append(","); if (getCreateTime() != null) sb.append("CreateTime: ").append(getCreateTime()).append(","); if (getUpdateTime() != null) sb.append("UpdateTime: ").append(getUpdateTime()).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 (getInputReferenceConfig() != null) sb.append("InputReferenceConfig: ").append(getInputReferenceConfig()).append(","); if (getName() != null) sb.append("Name: ").append(getName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof IdMappingTableSummary == false) return false; IdMappingTableSummary other = (IdMappingTableSummary) obj; 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.getMembershipId() == null ^ this.getMembershipId() == null) return false; if (other.getMembershipId() != null && other.getMembershipId().equals(this.getMembershipId()) == 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.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; 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.getInputReferenceConfig() == null ^ this.getInputReferenceConfig() == null) return false; if (other.getInputReferenceConfig() != null && other.getInputReferenceConfig().equals(this.getInputReferenceConfig()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCollaborationArn() == null) ? 0 : getCollaborationArn().hashCode()); hashCode = prime * hashCode + ((getCollaborationId() == null) ? 0 : getCollaborationId().hashCode()); hashCode = prime * hashCode + ((getMembershipId() == null) ? 0 : getMembershipId().hashCode()); hashCode = prime * hashCode + ((getMembershipArn() == null) ? 0 : getMembershipArn().hashCode()); hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); 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 + ((getInputReferenceConfig() == null) ? 0 : getInputReferenceConfig().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); return hashCode; } @Override public IdMappingTableSummary clone() { try { return (IdMappingTableSummary) 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.IdMappingTableSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy