AWSTranslateParallelDataProperties
Objective-C
@interface AWSTranslateParallelDataProperties
Swift
class AWSTranslateParallelDataProperties
The properties of a parallel data resource.
-
The Amazon Resource Name (ARN) of the parallel data resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable arn;
Swift
var arn: String? { get set }
-
The time at which the parallel data resource was created.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable createdAt;
Swift
var createdAt: Date? { get set }
-
The description assigned to the parallel data resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The encryption key used to encrypt this object.
Declaration
Objective-C
@property (nonatomic, strong) AWSTranslateEncryptionKey *_Nullable encryptionKey;
Swift
var encryptionKey: AWSTranslateEncryptionKey? { get set }
-
The number of records unsuccessfully imported from the parallel data input file.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable failedRecordCount;
Swift
var failedRecordCount: NSNumber? { get set }
-
The number of UTF-8 characters that Amazon Translate imported from the parallel data input file. This number includes only the characters in your translation examples. It does not include characters that are used to format your file. For example, if you provided a Translation Memory Exchange (.tmx) file, this number does not include the tags.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable importedDataSize;
Swift
var importedDataSize: NSNumber? { get set }
-
The number of records successfully imported from the parallel data input file.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable importedRecordCount;
Swift
var importedRecordCount: NSNumber? { get set }
-
The time at which the parallel data resource was last updated.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable lastUpdatedAt;
Swift
var lastUpdatedAt: Date? { get set }
-
The time that the most recent update was attempted.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable latestUpdateAttemptAt;
Swift
var latestUpdateAttemptAt: Date? { get set }
-
The status of the most recent update attempt for the parallel data resource.
Declaration
Objective-C
@property (nonatomic) AWSTranslateParallelDataStatus latestUpdateAttemptStatus;
Swift
var latestUpdateAttemptStatus: AWSTranslateParallelDataStatus { get set }
-
Additional information from Amazon Translate about the parallel data resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable message;
Swift
var message: String? { get set }
-
The custom name assigned to the parallel data resource.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
Specifies the format and S3 location of the parallel data input file.
Declaration
Objective-C
@property (nonatomic, strong) AWSTranslateParallelDataConfig *_Nullable parallelDataConfig;
Swift
var parallelDataConfig: AWSTranslateParallelDataConfig? { get set }
-
The number of items in the input file that Amazon Translate skipped when you created or updated the parallel data resource. For example, Amazon Translate skips empty records, empty target texts, and empty lines.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable skippedRecordCount;
Swift
var skippedRecordCount: NSNumber? { get set }
-
The source language of the translations in the parallel data file.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sourceLanguageCode;
Swift
var sourceLanguageCode: String? { get set }
-
The status of the parallel data resource. When the parallel data is ready for you to use, the status is
ACTIVE
.Declaration
Objective-C
@property (nonatomic) AWSTranslateParallelDataStatus status;
Swift
var status: AWSTranslateParallelDataStatus { get set }
-
The language codes for the target languages available in the parallel data file. All possible target languages are returned as an array.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable targetLanguageCodes;
Swift
var targetLanguageCodes: [String]? { get set }