#[non_exhaustive]pub struct ListTranscriptionJobsInput { /* private fields */ }Implementations§
source§impl ListTranscriptionJobsInput
impl ListTranscriptionJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTranscriptionJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListTranscriptionJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListTranscriptionJobs>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListTranscriptionJobsInput.
source§impl ListTranscriptionJobsInput
impl ListTranscriptionJobsInput
sourcepub fn status(&self) -> Option<&TranscriptionJobStatus>
pub fn status(&self) -> Option<&TranscriptionJobStatus>
Returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all transcription jobs are returned.
sourcepub fn job_name_contains(&self) -> Option<&str>
pub fn job_name_contains(&self) -> Option<&str>
Returns only the transcription jobs that contain the specified string. The search is not case sensitive.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If your ListTranscriptionJobs request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of transcription jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.
Trait Implementations§
source§impl Clone for ListTranscriptionJobsInput
impl Clone for ListTranscriptionJobsInput
source§fn clone(&self) -> ListTranscriptionJobsInput
fn clone(&self) -> ListTranscriptionJobsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListTranscriptionJobsInput
impl Debug for ListTranscriptionJobsInput
source§impl PartialEq<ListTranscriptionJobsInput> for ListTranscriptionJobsInput
impl PartialEq<ListTranscriptionJobsInput> for ListTranscriptionJobsInput
source§fn eq(&self, other: &ListTranscriptionJobsInput) -> bool
fn eq(&self, other: &ListTranscriptionJobsInput) -> bool
self and other values to be equal, and is used
by ==.