Class: Aws::TranscribeService::Types::ListLanguageModelsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TranscribeService::Types::ListLanguageModelsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transcribeservice/types.rb
Overview
When making an API call, you may pass ListLanguageModelsRequest data as a hash:
{
status_equals: "IN_PROGRESS", # accepts IN_PROGRESS, FAILED, COMPLETED
name_contains: "ModelName",
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of language models to return in the response.
-
#name_contains ⇒ String
When specified, the custom language model names returned contain the substring you've specified.
-
#next_token ⇒ String
When included, fetches the next set of jobs if the result of the previous request was truncated.
-
#status_equals ⇒ String
When specified, returns only custom language models with the specified status.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of language models to return in the response. If there are fewer results in the list, the response contains only the actual results.
1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1023 class ListLanguageModelsRequest < Struct.new( :status_equals, :name_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#name_contains ⇒ String
When specified, the custom language model names returned contain the substring you've specified.
1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1023 class ListLanguageModelsRequest < Struct.new( :status_equals, :name_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When included, fetches the next set of jobs if the result of the previous request was truncated.
1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1023 class ListLanguageModelsRequest < Struct.new( :status_equals, :name_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#status_equals ⇒ String
When specified, returns only custom language models with the specified status. Language models are ordered by creation date, with the newest models first. If you don't specify a status, Amazon Transcribe returns all custom language models ordered by date.
1023 1024 1025 1026 1027 1028 1029 1030 |
# File 'lib/aws-sdk-transcribeservice/types.rb', line 1023 class ListLanguageModelsRequest < Struct.new( :status_equals, :name_contains, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |