AWSTranslateTranslateTextRequest
Objective-C
@interface AWSTranslateTranslateTextRequest
Swift
class AWSTranslateTranslateTextRequest
-
Settings to configure your translation output, including the option to set the formality level of the output text and the option to mask profane words and phrases.
Declaration
Objective-C
@property (nonatomic, strong) AWSTranslateTranslationSettings *_Nullable settings;
Swift
var settings: AWSTranslateTranslationSettings? { get set }
-
The language code for the language of the source text. For a list of language codes, see Supported languages.
To have Amazon Translate determine the source language of your text, you can specify
auto
in theSourceLanguageCode
field. If you specifyauto
, Amazon Translate will call Amazon Comprehend to determine the source language.If you specify
auto
, you must send theTranslateText
request in a region that supports Amazon Comprehend. Otherwise, the request returns an error indicating that autodetect is not supported.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sourceLanguageCode;
Swift
var sourceLanguageCode: String? { get set }
-
The language code requested for the language of the target text. For a list of language codes, see Supported languages.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable targetLanguageCode;
Swift
var targetLanguageCode: String? { get set }
-
The name of a terminology list file to add to the translation job. This file provides source terms and the desired translation for each term. A terminology list can contain a maximum of 256 terms. You can use one custom terminology resource in your translation request.
Use the ListTerminologies operation to get the available terminology lists.
For more information about custom terminology lists, see Custom terminology.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable terminologyNames;
Swift
var terminologyNames: [String]? { get set }
-
The text to translate. The text string can be a maximum of 10,000 bytes long. Depending on your character set, this may be fewer than 10,000 characters.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable text;
Swift
var text: String? { get set }