Class: Aws::Translate::Types::ListLanguagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Translate::Types::ListLanguagesResponse
- Includes:
- Structure
- Defined in:
- 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.
689 690 691 692 693 694 695 |
# File 'lib/aws-sdk-translate/types.rb', line 689 class ListLanguagesResponse < Struct.new( :languages, :display_language_code, :next_token) SENSITIVE = [] include Aws::Structure end |
#languages ⇒ Array<Types::Language>
The list of supported languages.
689 690 691 692 693 694 695 |
# File 'lib/aws-sdk-translate/types.rb', line 689 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.
689 690 691 692 693 694 695 |
# File 'lib/aws-sdk-translate/types.rb', line 689 class ListLanguagesResponse < Struct.new( :languages, :display_language_code, :next_token) SENSITIVE = [] include Aws::Structure end |