Translate.Paginator.
ListTerminologies
¶paginator = client.get_paginator('list_terminologies')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Translate.Client.list_terminologies()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'TerminologyPropertiesList': [
{
'Name': 'string',
'Description': 'string',
'Arn': 'string',
'SourceLanguageCode': 'string',
'TargetLanguageCodes': [
'string',
],
'EncryptionKey': {
'Type': 'KMS',
'Id': 'string'
},
'SizeBytes': 123,
'TermCount': 123,
'CreatedAt': datetime(2015, 1, 1),
'LastUpdatedAt': datetime(2015, 1, 1),
'Directionality': 'UNI'|'MULTI',
'Message': 'string',
'SkippedTermCount': 123,
'Format': 'CSV'|'TMX'|'TSV'
},
],
}
Response Structure
The properties list of the custom terminologies returned on the list request.
The properties of the custom terminology.
The name of the custom terminology.
The description of the custom terminology properties.
The Amazon Resource Name (ARN) of the custom terminology.
The language code for the source text of the translation request for which the custom terminology is being used.
The language codes for the target languages available with the custom terminology resource. All possible target languages are returned in array.
The encryption key for the custom terminology.
The type of encryption key used by Amazon Translate to encrypt this object.
The Amazon Resource Name (ARN) of the encryption key being used to encrypt this object.
The size of the file used when importing a custom terminology.
The number of terms included in the custom terminology.
The time at which the custom terminology was created, based on the timestamp.
The time at which the custom terminology was last update, based on the timestamp.
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.
Additional information from Amazon Translate about the terminology resource.
The number of terms in the input file that Amazon Translate skipped when you created or updated the terminology resource.
The format of the custom terminology input file.