@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class CreateCallAnalyticsCategoryRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
NOOP
Constructor and Description |
---|
CreateCallAnalyticsCategoryRequest() |
Modifier and Type | Method and Description |
---|---|
CreateCallAnalyticsCategoryRequest |
clone()
Creates a shallow clone of this object for all fields except the handler context.
|
boolean |
equals(Object obj) |
String |
getCategoryName()
A unique name, chosen by you, for your Call Analytics category.
|
String |
getInputType()
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
|
List<Rule> |
getRules()
Rules define a Call Analytics category.
|
int |
hashCode() |
void |
setCategoryName(String categoryName)
A unique name, chosen by you, for your Call Analytics category.
|
void |
setInputType(String inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
|
void |
setRules(Collection<Rule> rules)
Rules define a Call Analytics category.
|
String |
toString()
Returns a string representation of this object.
|
CreateCallAnalyticsCategoryRequest |
withCategoryName(String categoryName)
A unique name, chosen by you, for your Call Analytics category.
|
CreateCallAnalyticsCategoryRequest |
withInputType(InputType inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
|
CreateCallAnalyticsCategoryRequest |
withInputType(String inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
|
CreateCallAnalyticsCategoryRequest |
withRules(Collection<Rule> rules)
Rules define a Call Analytics category.
|
CreateCallAnalyticsCategoryRequest |
withRules(Rule... rules)
Rules define a Call Analytics category.
|
addHandlerContext, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getHandlerContext, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestCredentialsProvider, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
public void setCategoryName(String categoryName)
A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming system that
will make sense to you in the future. For example, it's better to use
sentiment-positive-last30seconds
for a category over a generic name like test-category
.
Category names are case sensitive.
categoryName
- A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming
system that will make sense to you in the future. For example, it's better to use
sentiment-positive-last30seconds
for a category over a generic name like
test-category
.
Category names are case sensitive.
public String getCategoryName()
A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming system that
will make sense to you in the future. For example, it's better to use
sentiment-positive-last30seconds
for a category over a generic name like test-category
.
Category names are case sensitive.
sentiment-positive-last30seconds
for a category over a generic name like
test-category
.
Category names are case sensitive.
public CreateCallAnalyticsCategoryRequest withCategoryName(String categoryName)
A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming system that
will make sense to you in the future. For example, it's better to use
sentiment-positive-last30seconds
for a category over a generic name like test-category
.
Category names are case sensitive.
categoryName
- A unique name, chosen by you, for your Call Analytics category. It's helpful to use a detailed naming
system that will make sense to you in the future. For example, it's better to use
sentiment-positive-last30seconds
for a category over a generic name like
test-category
.
Category names are case sensitive.
public List<Rule> getRules()
Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20 rules for that category. For each rule, you specify a filter you want applied to the attributes of a call. For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during the last 30 seconds of the call.
public void setRules(Collection<Rule> rules)
Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20 rules for that category. For each rule, you specify a filter you want applied to the attributes of a call. For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during the last 30 seconds of the call.
rules
- Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20
rules for that category. For each rule, you specify a filter you want applied to the attributes of a call.
For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during
the last 30 seconds of the call.public CreateCallAnalyticsCategoryRequest withRules(Rule... rules)
Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20 rules for that category. For each rule, you specify a filter you want applied to the attributes of a call. For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during the last 30 seconds of the call.
NOTE: This method appends the values to the existing list (if any). Use
setRules(java.util.Collection)
or withRules(java.util.Collection)
if you want to override the
existing values.
rules
- Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20
rules for that category. For each rule, you specify a filter you want applied to the attributes of a call.
For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during
the last 30 seconds of the call.public CreateCallAnalyticsCategoryRequest withRules(Collection<Rule> rules)
Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20 rules for that category. For each rule, you specify a filter you want applied to the attributes of a call. For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during the last 30 seconds of the call.
rules
- Rules define a Call Analytics category. When creating a new category, you must create between 1 and 20
rules for that category. For each rule, you specify a filter you want applied to the attributes of a call.
For example, you can choose a sentiment filter that detects if a customer's sentiment was positive during
the last 30 seconds of the call.public void setInputType(String inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this input
type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this input
type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
inputType
- Choose whether you want to create a real-time or a post-call category for your Call Analytics
transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this
input type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this
input type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
InputType
public String getInputType()
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this input
type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this input
type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this
input type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this
input type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by
default.
InputType
public CreateCallAnalyticsCategoryRequest withInputType(String inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this input
type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this input
type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
inputType
- Choose whether you want to create a real-time or a post-call category for your Call Analytics
transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this
input type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this
input type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
InputType
public CreateCallAnalyticsCategoryRequest withInputType(InputType inputType)
Choose whether you want to create a real-time or a post-call category for your Call Analytics transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this input
type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this input
type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
inputType
- Choose whether you want to create a real-time or a post-call category for your Call Analytics
transcription.
Specifying POST_CALL
assigns your category to post-call transcriptions; categories with this
input type cannot be applied to streaming (real-time) transcriptions.
Specifying REAL_TIME
assigns your category to streaming transcriptions; categories with this
input type cannot be applied to post-call transcriptions.
If you do not include InputType
, your category is created as a post-call category by default.
InputType
public String toString()
toString
in class Object
Object.toString()
public CreateCallAnalyticsCategoryRequest clone()
AmazonWebServiceRequest
clone
in class AmazonWebServiceRequest
Object.clone()