/* * Copyright 2010-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.connect.model; import java.io.Serializable; /** * <p> * Information about a prompt. * </p> */ public class Prompt implements Serializable { /** * <p> * The Amazon Resource Name (ARN) of the prompt. * </p> */ private String promptARN; /** * <p> * A unique identifier for the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> */ private String promptId; /** * <p> * The name of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 127<br/> */ private String name; /** * <p> * The description of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 250<br/> */ private String description; /** * <p> * The tags used to organize, track, or control access for this resource. * For example, { "tags": {"key1":"value1", "key2":"value2"} }. * </p> */ private java.util.Map<String, String> tags; /** * <p> * The Amazon Resource Name (ARN) of the prompt. * </p> * * @return <p> * The Amazon Resource Name (ARN) of the prompt. * </p> */ public String getPromptARN() { return promptARN; } /** * <p> * The Amazon Resource Name (ARN) of the prompt. * </p> * * @param promptARN <p> * The Amazon Resource Name (ARN) of the prompt. * </p> */ public void setPromptARN(String promptARN) { this.promptARN = promptARN; } /** * <p> * The Amazon Resource Name (ARN) of the prompt. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param promptARN <p> * The Amazon Resource Name (ARN) of the prompt. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt withPromptARN(String promptARN) { this.promptARN = promptARN; return this; } /** * <p> * A unique identifier for the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @return <p> * A unique identifier for the prompt. * </p> */ public String getPromptId() { return promptId; } /** * <p> * A unique identifier for the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @param promptId <p> * A unique identifier for the prompt. * </p> */ public void setPromptId(String promptId) { this.promptId = promptId; } /** * <p> * A unique identifier for the prompt. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 256<br/> * * @param promptId <p> * A unique identifier for the prompt. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt withPromptId(String promptId) { this.promptId = promptId; return this; } /** * <p> * The name of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 127<br/> * * @return <p> * The name of the prompt. * </p> */ public String getName() { return name; } /** * <p> * The name of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 127<br/> * * @param name <p> * The name of the prompt. * </p> */ public void setName(String name) { this.name = name; } /** * <p> * The name of the prompt. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 127<br/> * * @param name <p> * The name of the prompt. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt withName(String name) { this.name = name; return this; } /** * <p> * The description of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 250<br/> * * @return <p> * The description of the prompt. * </p> */ public String getDescription() { return description; } /** * <p> * The description of the prompt. * </p> * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 250<br/> * * @param description <p> * The description of the prompt. * </p> */ public void setDescription(String description) { this.description = description; } /** * <p> * The description of the prompt. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * <p> * <b>Constraints:</b><br/> * <b>Length: </b>1 - 250<br/> * * @param description <p> * The description of the prompt. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt withDescription(String description) { this.description = description; return this; } /** * <p> * The tags used to organize, track, or control access for this resource. * For example, { "tags": {"key1":"value1", "key2":"value2"} }. * </p> * * @return <p> * The tags used to organize, track, or control access for this * resource. For example, { "tags": {"key1":"value1", * "key2":"value2"} }. * </p> */ public java.util.Map<String, String> getTags() { return tags; } /** * <p> * The tags used to organize, track, or control access for this resource. * For example, { "tags": {"key1":"value1", "key2":"value2"} }. * </p> * * @param tags <p> * The tags used to organize, track, or control access for this * resource. For example, { "tags": {"key1":"value1", * "key2":"value2"} }. * </p> */ public void setTags(java.util.Map<String, String> tags) { this.tags = tags; } /** * <p> * The tags used to organize, track, or control access for this resource. * For example, { "tags": {"key1":"value1", "key2":"value2"} }. * </p> * <p> * Returns a reference to this object so that method calls can be chained * together. * * @param tags <p> * The tags used to organize, track, or control access for this * resource. For example, { "tags": {"key1":"value1", * "key2":"value2"} }. * </p> * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt withTags(java.util.Map<String, String> tags) { this.tags = tags; return this; } /** * <p> * The tags used to organize, track, or control access for this resource. * For example, { "tags": {"key1":"value1", "key2":"value2"} }. * </p> * <p> * The method adds a new key-value pair into Tags parameter, and returns a * reference to this object so that method calls can be chained together. * * @param key The key of the entry to be added into Tags. * @param value The corresponding value of the entry to be added into Tags. * @return A reference to this updated object so that method calls can be * chained together. */ public Prompt addTagsEntry(String key, String value) { if (null == this.tags) { this.tags = new java.util.HashMap<String, String>(); } 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. * <p> * Returns a reference to this object so that method calls can be chained * together. */ public Prompt clearTagsEntries() { this.tags = null; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getPromptARN() != null) sb.append("PromptARN: " + getPromptARN() + ","); if (getPromptId() != null) sb.append("PromptId: " + getPromptId() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getTags() != null) sb.append("Tags: " + getTags()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getPromptARN() == null) ? 0 : getPromptARN().hashCode()); hashCode = prime * hashCode + ((getPromptId() == null) ? 0 : getPromptId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Prompt == false) return false; Prompt other = (Prompt) obj; if (other.getPromptARN() == null ^ this.getPromptARN() == null) return false; if (other.getPromptARN() != null && other.getPromptARN().equals(this.getPromptARN()) == false) return false; if (other.getPromptId() == null ^ this.getPromptId() == null) return false; if (other.getPromptId() != null && other.getPromptId().equals(this.getPromptId()) == 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.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } }