Class: Aws::Translate::Types::ListLanguagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Translate::Types::ListLanguagesResponse
- Defined in:
- gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#display_language_code ⇒ String
The language code passed in with the request.
-
#languages ⇒ Array<Types::Language>
The list of supported languages.
-
#next_token ⇒ String
If the response does not include all remaining results, use the NextToken in the next request to fetch the next group of supported languages.
Instance Attribute Details
#display_language_code ⇒ String
The language code passed in with the request.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 657 class ListLanguagesResponse < Struct.new( :languages, :display_language_code, :next_token) SENSITIVE = [] include Aws::Structure end |
#languages ⇒ Array<Types::Language>
The list of supported languages.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 657 class ListLanguagesResponse < Struct.new( :languages, :display_language_code, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response does not include all remaining results, use the NextToken in the next request to fetch the next group of supported languages.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-translate/lib/aws-sdk-translate/types.rb', line 657 class ListLanguagesResponse < Struct.new( :languages, :display_language_code, :next_token) SENSITIVE = [] include Aws::Structure end |