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.
5689 5690 5691 5692 5693 5694 5695 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5689 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.
5689 5690 5691 5692 5693 5694 5695 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5689 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.
5689 5690 5691 5692 5693 5694 5695 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 5689 class UpdateCallAnalyticsCategoryRequest < Struct.new( :category_name, :rules, :input_type) SENSITIVE = [] include Aws::Structure end |