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

com.amazonaws.services.ivschat.model.RoomSummary Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
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.ivschat.model;

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

/**
 * 

* Summary information about a room. *

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

* Room ARN. *

*/ private String arn; /** *

* Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the * room. *

*/ private String id; /** *

* Room name. The value does not need to be unique. *

*/ private String name; /** *

* Configuration information for optional review of messages. *

*/ private MessageReviewHandler messageReviewHandler; /** *

* Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string. *

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

* Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string. *

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

* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, * including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no * constraints beyond what is documented there. *

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

* List of logging-configuration identifiers attached to the room. *

*/ private java.util.List loggingConfigurationIdentifiers; /** *

* Room ARN. *

* * @param arn * Room ARN. */ public void setArn(String arn) { this.arn = arn; } /** *

* Room ARN. *

* * @return Room ARN. */ public String getArn() { return this.arn; } /** *

* Room ARN. *

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

* Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the * room. *

* * @param id * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely * identifies the room. */ public void setId(String id) { this.id = id; } /** *

* Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the * room. *

* * @return Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely * identifies the room. */ public String getId() { return this.id; } /** *

* Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the * room. *

* * @param id * Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely * identifies the room. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withId(String id) { setId(id); return this; } /** *

* Room name. The value does not need to be unique. *

* * @param name * Room name. The value does not need to be unique. */ public void setName(String name) { this.name = name; } /** *

* Room name. The value does not need to be unique. *

* * @return Room name. The value does not need to be unique. */ public String getName() { return this.name; } /** *

* Room name. The value does not need to be unique. *

* * @param name * Room name. The value does not need to be unique. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withName(String name) { setName(name); return this; } /** *

* Configuration information for optional review of messages. *

* * @param messageReviewHandler * Configuration information for optional review of messages. */ public void setMessageReviewHandler(MessageReviewHandler messageReviewHandler) { this.messageReviewHandler = messageReviewHandler; } /** *

* Configuration information for optional review of messages. *

* * @return Configuration information for optional review of messages. */ public MessageReviewHandler getMessageReviewHandler() { return this.messageReviewHandler; } /** *

* Configuration information for optional review of messages. *

* * @param messageReviewHandler * Configuration information for optional review of messages. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withMessageReviewHandler(MessageReviewHandler messageReviewHandler) { setMessageReviewHandler(messageReviewHandler); return this; } /** *

* Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @param createTime * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a * string. */ public void setCreateTime(java.util.Date createTime) { this.createTime = createTime; } /** *

* Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @return Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a * string. */ public java.util.Date getCreateTime() { return this.createTime; } /** *

* Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @param createTime * Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a * string. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withCreateTime(java.util.Date createTime) { setCreateTime(createTime); return this; } /** *

* Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @param updateTime * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a * string. */ public void setUpdateTime(java.util.Date updateTime) { this.updateTime = updateTime; } /** *

* Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @return Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a * string. */ public java.util.Date getUpdateTime() { return this.updateTime; } /** *

* Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string. *

* * @param updateTime * Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a * string. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withUpdateTime(java.util.Date updateTime) { setUpdateTime(updateTime); return this; } /** *

* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, * including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no * constraints beyond what is documented there. *

* * @return Tags attached to the resource. Array of maps, each of the form string:string (key:value). * See Tagging AWS Resources * for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon * IVS Chat has no constraints beyond what is documented there. */ public java.util.Map getTags() { return tags; } /** *

* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, * including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no * constraints beyond what is documented there. *

* * @param tags * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See * Tagging AWS Resources for * details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS * Chat has no constraints beyond what is documented there. */ public void setTags(java.util.Map tags) { this.tags = tags; } /** *

* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, * including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no * constraints beyond what is documented there. *

* * @param tags * Tags attached to the resource. Array of maps, each of the form string:string (key:value). See * Tagging AWS Resources for * details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS * Chat has no constraints beyond what is documented there. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withTags(java.util.Map tags) { setTags(tags); return this; } /** * Add a single Tags entry * * @see RoomSummary#withTags * @returns a reference to this object so that method calls can be chained together. */ public RoomSummary 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 RoomSummary clearTagsEntries() { this.tags = null; return this; } /** *

* List of logging-configuration identifiers attached to the room. *

* * @return List of logging-configuration identifiers attached to the room. */ public java.util.List getLoggingConfigurationIdentifiers() { return loggingConfigurationIdentifiers; } /** *

* List of logging-configuration identifiers attached to the room. *

* * @param loggingConfigurationIdentifiers * List of logging-configuration identifiers attached to the room. */ public void setLoggingConfigurationIdentifiers(java.util.Collection loggingConfigurationIdentifiers) { if (loggingConfigurationIdentifiers == null) { this.loggingConfigurationIdentifiers = null; return; } this.loggingConfigurationIdentifiers = new java.util.ArrayList(loggingConfigurationIdentifiers); } /** *

* List of logging-configuration identifiers attached to the room. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setLoggingConfigurationIdentifiers(java.util.Collection)} or * {@link #withLoggingConfigurationIdentifiers(java.util.Collection)} if you want to override the existing values. *

* * @param loggingConfigurationIdentifiers * List of logging-configuration identifiers attached to the room. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withLoggingConfigurationIdentifiers(String... loggingConfigurationIdentifiers) { if (this.loggingConfigurationIdentifiers == null) { setLoggingConfigurationIdentifiers(new java.util.ArrayList(loggingConfigurationIdentifiers.length)); } for (String ele : loggingConfigurationIdentifiers) { this.loggingConfigurationIdentifiers.add(ele); } return this; } /** *

* List of logging-configuration identifiers attached to the room. *

* * @param loggingConfigurationIdentifiers * List of logging-configuration identifiers attached to the room. * @return Returns a reference to this object so that method calls can be chained together. */ public RoomSummary withLoggingConfigurationIdentifiers(java.util.Collection loggingConfigurationIdentifiers) { setLoggingConfigurationIdentifiers(loggingConfigurationIdentifiers); 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 (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getMessageReviewHandler() != null) sb.append("MessageReviewHandler: ").append(getMessageReviewHandler()).append(","); if (getCreateTime() != null) sb.append("CreateTime: ").append(getCreateTime()).append(","); if (getUpdateTime() != null) sb.append("UpdateTime: ").append(getUpdateTime()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getLoggingConfigurationIdentifiers() != null) sb.append("LoggingConfigurationIdentifiers: ").append(getLoggingConfigurationIdentifiers()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RoomSummary == false) return false; RoomSummary other = (RoomSummary) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == 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.getMessageReviewHandler() == null ^ this.getMessageReviewHandler() == null) return false; if (other.getMessageReviewHandler() != null && other.getMessageReviewHandler().equals(this.getMessageReviewHandler()) == 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.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getLoggingConfigurationIdentifiers() == null ^ this.getLoggingConfigurationIdentifiers() == null) return false; if (other.getLoggingConfigurationIdentifiers() != null && other.getLoggingConfigurationIdentifiers().equals(this.getLoggingConfigurationIdentifiers()) == 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 + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getMessageReviewHandler() == null) ? 0 : getMessageReviewHandler().hashCode()); hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getLoggingConfigurationIdentifiers() == null) ? 0 : getLoggingConfigurationIdentifiers().hashCode()); return hashCode; } @Override public RoomSummary clone() { try { return (RoomSummary) 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.ivschat.model.transform.RoomSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy