Class: Aws::TranscribeService::Types::UpdateCallAnalyticsCategoryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::UpdateCallAnalyticsCategoryRequest
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#category_name ⇒ String
The name of the Call Analytics category you want to update.
-
#input_type ⇒ String
Choose whether you want to update a real-time or a post-call category.
-
#rules ⇒ Array<Types::Rule>
The rules used for the updated Call Analytics category.
Instance Attribute Details
#category_name ⇒ String
The name of the Call Analytics category you want to update. Category names are case sensitive.
5707 5708 5709 5710 5711 5712 5713 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5707 class UpdateCallAnalyticsCategoryRequest < Struct.new( :category_name, :rules, :input_type) SENSITIVE = [] include Aws::Structure end |
#input_type ⇒ String
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.
5707 5708 5709 5710 5711 5712 5713 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5707 class UpdateCallAnalyticsCategoryRequest < Struct.new( :category_name, :rules, :input_type) SENSITIVE = [] include Aws::Structure end |
#rules ⇒ Array<Types::Rule>
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.
5707 5708 5709 5710 5711 5712 5713 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5707 class UpdateCallAnalyticsCategoryRequest < Struct.new( :category_name, :rules, :input_type) SENSITIVE = [] include Aws::Structure end |