AWSTranslateTranslateDocumentRequest

Objective-C

@interface AWSTranslateTranslateDocumentRequest

Swift

class AWSTranslateTranslateDocumentRequest
  • The content and content type for the document to be translated. The document size must not exceed 100 KB.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTranslateDocument *_Nullable document;

    Swift

    var document: AWSTranslateDocument? { get set }
  • 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. Do not use auto, because TranslateDocument does not support language auto-detection. For a list of supported language codes, see Supported languages.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable sourceLanguageCode;

    Swift

    var sourceLanguageCode: String? { get set }
  • The language code requested for the translated document. For a list of supported 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 }