List Terminologies
| translate_list_terminologies | R Documentation |
Provides a list of custom terminologies associated with your account¶
Description¶
Provides a list of custom terminologies associated with your account.
Usage¶
Arguments¶
NextTokenIf the result of the request to ListTerminologies was truncated, include the NextToken to fetch the next group of custom terminologies.
MaxResultsThe maximum number of custom terminologies returned per list request.
Value¶
A list with the following syntax:
list(
TerminologyPropertiesList = list(
list(
Name = "string",
Description = "string",
Arn = "string",
SourceLanguageCode = "string",
TargetLanguageCodes = list(
"string"
),
EncryptionKey = list(
Type = "KMS",
Id = "string"
),
SizeBytes = 123,
TermCount = 123,
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
Directionality = "UNI"|"MULTI",
Message = "string",
SkippedTermCount = 123,
Format = "CSV"|"TMX"|"TSV"
)
),
NextToken = "string"
)