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

com.amazonaws.services.transcribe.model.UpdateCallAnalyticsCategoryRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Transcribe module holds the client classes that are used for communicating with Amazon Transcribe 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.transcribe.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* The name of the Call Analytics category you want to update. Category names are case sensitive. *

*/ private String categoryName; /** *

* The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that * are currently being used in the specified category. *

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

* Choose whether you want to update a real-time or a post-call category. The input type you specify must match the * input type specified when the category was created. For example, if you created a category with the * POST_CALL input type, you must use POST_CALL as the input type when updating this * category. *

*/ private String inputType; /** *

* The name of the Call Analytics category you want to update. Category names are case sensitive. *

* * @param categoryName * The name of the Call Analytics category you want to update. Category names are case sensitive. */ public void setCategoryName(String categoryName) { this.categoryName = categoryName; } /** *

* The name of the Call Analytics category you want to update. Category names are case sensitive. *

* * @return The name of the Call Analytics category you want to update. Category names are case sensitive. */ public String getCategoryName() { return this.categoryName; } /** *

* The name of the Call Analytics category you want to update. Category names are case sensitive. *

* * @param categoryName * The name of the Call Analytics category you want to update. Category names are case sensitive. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateCallAnalyticsCategoryRequest withCategoryName(String categoryName) { setCategoryName(categoryName); return this; } /** *

* The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that * are currently being used in the specified category. *

* * @return The rules used for the updated Call Analytics category. The rules you provide in this field replace the * ones that are currently being used in the specified category. */ public java.util.List getRules() { return rules; } /** *

* The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that * are currently being used in the specified category. *

* * @param rules * The rules used for the updated Call Analytics category. The rules you provide in this field replace the * ones that are currently being used in the specified category. */ public void setRules(java.util.Collection rules) { if (rules == null) { this.rules = null; return; } this.rules = new java.util.ArrayList(rules); } /** *

* The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that * are currently being used in the specified category. *

*

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

* * @param rules * The rules used for the updated Call Analytics category. The rules you provide in this field replace the * ones that are currently being used in the specified category. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateCallAnalyticsCategoryRequest withRules(Rule... rules) { if (this.rules == null) { setRules(new java.util.ArrayList(rules.length)); } for (Rule ele : rules) { this.rules.add(ele); } return this; } /** *

* The rules used for the updated Call Analytics category. The rules you provide in this field replace the ones that * are currently being used in the specified category. *

* * @param rules * The rules used for the updated Call Analytics category. The rules you provide in this field replace the * ones that are currently being used in the specified category. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateCallAnalyticsCategoryRequest withRules(java.util.Collection rules) { setRules(rules); return this; } /** *

* Choose whether you want to update a real-time or a post-call category. The input type you specify must match the * input type specified when the category was created. For example, if you created a category with the * POST_CALL input type, you must use POST_CALL as the input type when updating this * category. *

* * @param inputType * Choose whether you want to update a real-time or a post-call category. The input type you specify must * match the input type specified when the category was created. For example, if you created a category with * the POST_CALL input type, you must use POST_CALL as the input type when updating * this category. * @see InputType */ public void setInputType(String inputType) { this.inputType = inputType; } /** *

* Choose whether you want to update a real-time or a post-call category. The input type you specify must match the * input type specified when the category was created. For example, if you created a category with the * POST_CALL input type, you must use POST_CALL as the input type when updating this * category. *

* * @return Choose whether you want to update a real-time or a post-call category. The input type you specify must * match the input type specified when the category was created. For example, if you created a category with * the POST_CALL input type, you must use POST_CALL as the input type when * updating this category. * @see InputType */ public String getInputType() { return this.inputType; } /** *

* Choose whether you want to update a real-time or a post-call category. The input type you specify must match the * input type specified when the category was created. For example, if you created a category with the * POST_CALL input type, you must use POST_CALL as the input type when updating this * category. *

* * @param inputType * Choose whether you want to update a real-time or a post-call category. The input type you specify must * match the input type specified when the category was created. For example, if you created a category with * the POST_CALL input type, you must use POST_CALL as the input type when updating * this category. * @return Returns a reference to this object so that method calls can be chained together. * @see InputType */ public UpdateCallAnalyticsCategoryRequest withInputType(String inputType) { setInputType(inputType); return this; } /** *

* Choose whether you want to update a real-time or a post-call category. The input type you specify must match the * input type specified when the category was created. For example, if you created a category with the * POST_CALL input type, you must use POST_CALL as the input type when updating this * category. *

* * @param inputType * Choose whether you want to update a real-time or a post-call category. The input type you specify must * match the input type specified when the category was created. For example, if you created a category with * the POST_CALL input type, you must use POST_CALL as the input type when updating * this category. * @return Returns a reference to this object so that method calls can be chained together. * @see InputType */ public UpdateCallAnalyticsCategoryRequest withInputType(InputType inputType) { this.inputType = inputType.toString(); 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 (getCategoryName() != null) sb.append("CategoryName: ").append(getCategoryName()).append(","); if (getRules() != null) sb.append("Rules: ").append(getRules()).append(","); if (getInputType() != null) sb.append("InputType: ").append(getInputType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateCallAnalyticsCategoryRequest == false) return false; UpdateCallAnalyticsCategoryRequest other = (UpdateCallAnalyticsCategoryRequest) obj; if (other.getCategoryName() == null ^ this.getCategoryName() == null) return false; if (other.getCategoryName() != null && other.getCategoryName().equals(this.getCategoryName()) == false) return false; if (other.getRules() == null ^ this.getRules() == null) return false; if (other.getRules() != null && other.getRules().equals(this.getRules()) == false) return false; if (other.getInputType() == null ^ this.getInputType() == null) return false; if (other.getInputType() != null && other.getInputType().equals(this.getInputType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCategoryName() == null) ? 0 : getCategoryName().hashCode()); hashCode = prime * hashCode + ((getRules() == null) ? 0 : getRules().hashCode()); hashCode = prime * hashCode + ((getInputType() == null) ? 0 : getInputType().hashCode()); return hashCode; } @Override public UpdateCallAnalyticsCategoryRequest clone() { return (UpdateCallAnalyticsCategoryRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy