Class: Aws::TranscribeService::Types::ListLanguageModelsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::ListLanguageModelsResponse
- Defined in:
- gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#models ⇒ Array<Types::LanguageModel>
A list of objects containing information about custom language models.
-
#next_token ⇒ String
The operation returns a page of jobs at a time.
Instance Attribute Details
#models ⇒ Array<Types::LanguageModel>
A list of objects containing information about custom language models.
1047 1048 1049 1050 1051 1052 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1047 class ListLanguageModelsResponse < Struct.new( :next_token, :models) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The operation returns a page of jobs at a time. The maximum size of
the list is set by the MaxResults parameter. If there are more
language models in the list than the page size, Amazon Transcribe
returns the NextPage
token. Include the token in the next request
to the operation to return the next page of language models.
1047 1048 1049 1050 1051 1052 |
# File 'gems/aws-sdk-transcribeservice/lib/aws-sdk-transcribeservice/types.rb', line 1047 class ListLanguageModelsResponse < Struct.new( :next_token, :models) SENSITIVE = [] include Aws::Structure end |