Struct aws_sdk_transcribe::input::ListTranscriptionJobsInput [−][src]
#[non_exhaustive]pub struct ListTranscriptionJobsInput {
pub status: Option<TranscriptionJobStatus>,
pub job_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: Option<TranscriptionJobStatus>When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.
job_name_contains: Option<String>When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
next_token: Option<String>If the result of the previous request to ListTranscriptionJobs is truncated, include the
NextToken to fetch the next set of jobs.
max_results: Option<i32>The maximum number of jobs 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<ListTranscriptionJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTranscriptionJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListTranscriptionJobs>
Creates a new builder-style object to manufacture ListTranscriptionJobsInput
When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.
When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
If the result of the previous request to ListTranscriptionJobs is truncated, include the
NextToken to fetch the next set of jobs.
The maximum number of jobs 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 ListTranscriptionJobsInput
impl Send for ListTranscriptionJobsInput
impl Sync for ListTranscriptionJobsInput
impl Unpin for ListTranscriptionJobsInput
impl UnwindSafe for ListTranscriptionJobsInput
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