Struct aws_sdk_transcribe::input::ListMedicalTranscriptionJobsInput [−][src]
#[non_exhaustive]pub struct ListMedicalTranscriptionJobsInput {
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 medical 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 Medical 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 you a receive a truncated result in the previous request of ListMedicalTranscriptionJobs,
include NextToken to fetch the next set of jobs.
max_results: Option<i32>The maximum number of medical transcription 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<ListMedicalTranscriptionJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListMedicalTranscriptionJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListMedicalTranscriptionJobs>
Creates a new builder-style object to manufacture ListMedicalTranscriptionJobsInput
When specified, returns only medical 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 Medical 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 you a receive a truncated result in the previous request of ListMedicalTranscriptionJobs,
include NextToken to fetch the next set of jobs.
The maximum number of medical transcription 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 Send for ListMedicalTranscriptionJobsInput
impl Sync for ListMedicalTranscriptionJobsInput
impl Unpin for ListMedicalTranscriptionJobsInput
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