Struct aws_sdk_transcribe::input::ListLanguageModelsInput
source · [−]#[non_exhaustive]pub struct ListLanguageModelsInput {
pub status_equals: Option<ModelStatus>,
pub name_contains: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status_equals: Option<ModelStatus>
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.
name_contains: Option<String>
When specified, the custom language model names returned contain the substring you've specified.
next_token: Option<String>
When included, fetches the next set of jobs if the result of the previous request was truncated.
max_results: Option<i32>
The maximum number of language models to return in each page of results. If there are fewer results than the value you specify, only the actual results are returned. If you do not specify a value, the default of 5 is used.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLanguageModels, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListLanguageModels, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListLanguageModels
>
Creates a new builder-style object to manufacture ListLanguageModelsInput
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.
When specified, the custom language model names returned contain the substring you've specified.
When included, fetches the next set of jobs if the result of the previous request was truncated.
The maximum number of language models to return in each page of results. If there are fewer results than the value you specify, only the actual results are returned. If you do not specify a value, the default of 5 is used.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListLanguageModelsInput
impl Send for ListLanguageModelsInput
impl Sync for ListLanguageModelsInput
impl Unpin for ListLanguageModelsInput
impl UnwindSafe for ListLanguageModelsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more