AWSTranscribeUpdateCallAnalyticsCategoryRequest
Objective-C
@interface AWSTranscribeUpdateCallAnalyticsCategoryRequest
Swift
class AWSTranscribeUpdateCallAnalyticsCategoryRequest
-
The name of the Call Analytics category you want to update. Category names are case sensitive.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable categoryName;
Swift
var categoryName: String? { get set }
-
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 usePOST_CALL
as the input type when updating this category.Declaration
Objective-C
@property (nonatomic) AWSTranscribeInputType inputType;
Swift
var inputType: AWSTranscribeInputType { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTranscribeRule *> *_Nullable rules;
Swift
var rules: [AWSTranscribeRule]? { get set }