Description Usage Arguments Value Request syntax
View source: R/translate_operations.R
Provides a list of custom terminologies associated with your account.
1 | translate_list_terminologies(NextToken, MaxResults)
|
NextToken |
If the result of the request to ListTerminologies was truncated, include the NextToken to fetch the next group of custom terminologies. |
MaxResults |
The maximum number of custom terminologies returned per list request. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 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"
)
)
),
NextToken = "string"
)
|
1 2 3 4 | svc$list_terminologies(
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.