AWSTranslateTerminologyProperties

Objective-C

@interface AWSTranslateTerminologyProperties

Swift

class AWSTranslateTerminologyProperties

The properties of the custom terminology.

  • arn

    The Amazon Resource Name (ARN) of the custom terminology.

    Declaration

    Objective-C

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

    Swift

    var arn: String? { get set }
  • The time at which the custom terminology was created, based on the timestamp.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable createdAt;

    Swift

    var createdAt: Date? { get set }
  • The description of the custom terminology properties.

    Declaration

    Objective-C

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

    Swift

    var detail: String? { get set }
  • The directionality of your terminology resource indicates whether it has one source language (uni-directional) or multiple (multi-directional).

    UNI

    The terminology resource has one source language (the first column in a CSV file), and all of its other languages are target languages.

    MULTI

    Any language in the terminology resource can be the source language.

    Declaration

    Objective-C

    @property (nonatomic) AWSTranslateDirectionality directionality;

    Swift

    var directionality: AWSTranslateDirectionality { get set }
  • The encryption key for the custom terminology.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSTranslateEncryptionKey *_Nullable encryptionKey;

    Swift

    var encryptionKey: AWSTranslateEncryptionKey? { get set }
  • The format of the custom terminology input file.

    Declaration

    Objective-C

    @property (nonatomic) AWSTranslateTerminologyDataFormat format;

    Swift

    var format: AWSTranslateTerminologyDataFormat { get set }
  • The time at which the custom terminology was last update, based on the timestamp.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastUpdatedAt;

    Swift

    var lastUpdatedAt: Date? { get set }
  • Additional information from Amazon Translate about the terminology resource.

    Declaration

    Objective-C

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

    Swift

    var message: String? { get set }
  • The name of the custom terminology.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • The size of the file used when importing a custom terminology.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable sizeBytes;

    Swift

    var sizeBytes: NSNumber? { get set }
  • The number of terms in the input file that Amazon Translate skipped when you created or updated the terminology resource.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable skippedTermCount;

    Swift

    var skippedTermCount: NSNumber? { get set }
  • The language code for the source text of the translation request for which the custom terminology is being used.

    Declaration

    Objective-C

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

    Swift

    var sourceLanguageCode: String? { get set }
  • The language codes for the target languages available with the custom terminology resource. All possible target languages are returned in array.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable targetLanguageCodes;

    Swift

    var targetLanguageCodes: [String]? { get set }
  • The number of terms included in the custom terminology.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable termCount;

    Swift

    var termCount: NSNumber? { get set }