aws-sdk-mediaconvert 1.128.0

AWS SDK for AWS Elemental MediaConvert
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetJobsQueryResults`](crate::operation::get_jobs_query_results::builders::GetJobsQueryResultsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::get_jobs_query_results::builders::GetJobsQueryResultsFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::get_jobs_query_results::builders::GetJobsQueryResultsFluentBuilder::set_id):<br>required: **true**<br>The ID of the jobs query.<br>
    /// - On success, responds with [`GetJobsQueryResultsOutput`](crate::operation::get_jobs_query_results::GetJobsQueryResultsOutput) with field(s):
    ///   - [`jobs(Option<Vec::<Job>>)`](crate::operation::get_jobs_query_results::GetJobsQueryResultsOutput::jobs): List of jobs.
    ///   - [`next_token(Option<String>)`](crate::operation::get_jobs_query_results::GetJobsQueryResultsOutput::next_token): Use this string to request the next batch of jobs via the StartJobsQuery API.
    ///   - [`status(Option<JobsQueryStatus>)`](crate::operation::get_jobs_query_results::GetJobsQueryResultsOutput::status): The status of the jobs query.
    /// - On failure, responds with [`SdkError<GetJobsQueryResultsError>`](crate::operation::get_jobs_query_results::GetJobsQueryResultsError)
    pub fn get_jobs_query_results(&self) -> crate::operation::get_jobs_query_results::builders::GetJobsQueryResultsFluentBuilder {
        crate::operation::get_jobs_query_results::builders::GetJobsQueryResultsFluentBuilder::new(self.handle.clone())
    }
}