AWSTranslateTranslateTextResponse
Objective-C
@interface AWSTranslateTranslateTextResponse
Swift
class AWSTranslateTranslateTextResponse
-
Optional settings that modify the translation output.
Declaration
Objective-C
@property (nonatomic, strong) AWSTranslateTranslationSettings *_Nullable appliedSettings;
Swift
var appliedSettings: AWSTranslateTranslationSettings? { get set }
-
The names of the custom terminologies applied to the input text by Amazon Translate for the translated text response.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSTranslateAppliedTerminology *> *_Nullable appliedTerminologies;
Swift
var appliedTerminologies: [AWSTranslateAppliedTerminology]? { get set }
-
The language code for the language of the source text.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sourceLanguageCode;
Swift
var sourceLanguageCode: String? { get set }
-
The language code for the language of the target text.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable targetLanguageCode;
Swift
var targetLanguageCode: String? { get set }
-
The translated text.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable translatedText;
Swift
var translatedText: String? { get set }