Skip to main content

languages

Creates, updates, deletes, gets or lists a languages resource.

Overview

Namelanguages
TypeResource
Idaws.translate.languages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
display_language_codestringThe language code passed in with the request. (de, en, es, fr, it, ja, ko, pt, zh, zh-TW)
languagesarrayThe list of supported languages.
next_tokenstringIf the response does not include all remaining results, use the NextToken in the next request to fetch the next group of supported languages. (pattern: <code>\p{ASCII}{0,8192}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_languagesselectregionProvides a list of languages (RFC-5646 codes and names) that Amazon Translate supports.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Provides a list of languages (RFC-5646 codes and names) that Amazon Translate supports.

SELECT
display_language_code,
languages,
next_token
FROM aws.translate.languages
WHERE region = '{{ region }}' -- required
;