AWSTranslateAppliedTerminology
Objective-C
@interface AWSTranslateAppliedTerminology
Swift
class AWSTranslateAppliedTerminology
The custom terminology applied to the input text by Amazon Translate for the translated text response. This is optional in the response and will only be present if you specified terminology input in the request. Currently, only one terminology can be applied per TranslateText request.
-
The name of the custom terminology applied to the input text by Amazon Translate for the translated text response.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
The specific terms of the custom terminology applied to the input text by Amazon Translate for the translated text response. A maximum of 250 terms will be returned, and the specific terms applied will be the first 250 terms in the source text.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTranslateTerm *> *_Nullable terms;
Swift
var terms: [AWSTranslateTerm]? { get set }