The properties of the custom terminology.

interface TerminologyProperties {
    Arn?: string;
    CreatedAt?: Date;
    Description?: string;
    Directionality?: Directionality;
    EncryptionKey?: EncryptionKey;
    Format?: TerminologyDataFormat;
    LastUpdatedAt?: Date;
    Message?: string;
    Name?: string;
    SizeBytes?: number;
    SkippedTermCount?: number;
    SourceLanguageCode?: string;
    TargetLanguageCodes?: string[];
    TermCount?: number;
}

Properties

Arn?: string

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

CreatedAt?: Date

The time at which the custom terminology was created, based on the timestamp.

Description?: string

The description of the custom terminology properties.

Directionality?: Directionality

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.

EncryptionKey?: EncryptionKey

The encryption key for the custom terminology.

The format of the custom terminology input file.

LastUpdatedAt?: Date

The time at which the custom terminology was last update, based on the timestamp.

Message?: string

Additional information from Amazon Translate about the terminology resource.

Name?: string

The name of the custom terminology.

SizeBytes?: number

The size of the file used when importing a custom terminology.

SkippedTermCount?: number

The number of terms in the input file that Amazon Translate skipped when you created or updated the terminology resource.

SourceLanguageCode?: string

The language code for the source text of the translation request for which the custom terminology is being used.

TargetLanguageCodes?: string[]

The language codes for the target languages available with the custom terminology resource. All possible target languages are returned in array.

TermCount?: number

The number of terms included in the custom terminology.