#[non_exhaustive]pub struct ListMedicalTranscriptionJobsInput { /* private fields */ }Implementations§
source§impl ListMedicalTranscriptionJobsInput
impl ListMedicalTranscriptionJobsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListMedicalTranscriptionJobs, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListMedicalTranscriptionJobs, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListMedicalTranscriptionJobs>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListMedicalTranscriptionJobsInput.
source§impl ListMedicalTranscriptionJobsInput
impl ListMedicalTranscriptionJobsInput
sourcepub fn status(&self) -> Option<&TranscriptionJobStatus>
pub fn status(&self) -> Option<&TranscriptionJobStatus>
Returns only medical transcription jobs with the specified status. Jobs are ordered by creation date, with the newest job first. If you don't include Status, all medical transcription jobs are returned.
sourcepub fn job_name_contains(&self) -> Option<&str>
pub fn job_name_contains(&self) -> Option<&str>
Returns only the medical 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 ListMedicalTranscriptionJobs 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 medical 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 ListMedicalTranscriptionJobsInput
impl Clone for ListMedicalTranscriptionJobsInput
source§fn clone(&self) -> ListMedicalTranscriptionJobsInput
fn clone(&self) -> ListMedicalTranscriptionJobsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<ListMedicalTranscriptionJobsInput> for ListMedicalTranscriptionJobsInput
impl PartialEq<ListMedicalTranscriptionJobsInput> for ListMedicalTranscriptionJobsInput
source§fn eq(&self, other: &ListMedicalTranscriptionJobsInput) -> bool
fn eq(&self, other: &ListMedicalTranscriptionJobsInput) -> bool
self and other values to be equal, and is used
by ==.