The properties of a parallel data resource.

interface ParallelDataProperties {
    Arn?: string;
    CreatedAt?: Date;
    Description?: string;
    EncryptionKey?: EncryptionKey;
    FailedRecordCount?: number;
    ImportedDataSize?: number;
    ImportedRecordCount?: number;
    LastUpdatedAt?: Date;
    LatestUpdateAttemptAt?: Date;
    LatestUpdateAttemptStatus?: string;
    Message?: string;
    Name?: string;
    ParallelDataConfig?: ParallelDataConfig;
    SkippedRecordCount?: number;
    SourceLanguageCode?: string;
    Status?: string;
    TargetLanguageCodes?: string[];
}

Properties

Arn?: string

The Amazon Resource Name (ARN) of the parallel data resource.

CreatedAt?: Date

The time at which the parallel data resource was created.

Description?: string

The description assigned to the parallel data resource.

EncryptionKey?: EncryptionKey

The encryption key used to encrypt this object.

FailedRecordCount?: number

The number of records unsuccessfully imported from the parallel data input file.

ImportedDataSize?: number

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.

ImportedRecordCount?: number

The number of records successfully imported from the parallel data input file.

LastUpdatedAt?: Date

The time at which the parallel data resource was last updated.

LatestUpdateAttemptAt?: Date

The time that the most recent update was attempted.

LatestUpdateAttemptStatus?: string

The status of the most recent update attempt for the parallel data resource.

Message?: string

Additional information from Amazon Translate about the parallel data resource.

Name?: string

The custom name assigned to the parallel data resource.

ParallelDataConfig?: ParallelDataConfig

Specifies the format and S3 location of the parallel data input file.

SkippedRecordCount?: number

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.

SourceLanguageCode?: string

The source language of the translations in the parallel data file.

Status?: string

The status of the parallel data resource. When the parallel data is ready for you to use, the status is ACTIVE.

TargetLanguageCodes?: string[]

The language codes for the target languages available in the parallel data file. All possible target languages are returned as an array.