1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDashboardForJobRun`](crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl ::std::convert::Into<String>)`](crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder::set_application_id): <p>The ID of the application.</p>
    ///   - [`job_run_id(impl ::std::convert::Into<String>)`](crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder::job_run_id) / [`set_job_run_id(Option<String>)`](crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder::set_job_run_id): <p>The ID of the job run.</p>
    /// - On success, responds with [`GetDashboardForJobRunOutput`](crate::operation::get_dashboard_for_job_run::GetDashboardForJobRunOutput) with field(s):
    ///   - [`url(Option<String>)`](crate::operation::get_dashboard_for_job_run::GetDashboardForJobRunOutput::url): <p>The URL to view job run's dashboard.</p>
    /// - On failure, responds with [`SdkError<GetDashboardForJobRunError>`](crate::operation::get_dashboard_for_job_run::GetDashboardForJobRunError)
    pub fn get_dashboard_for_job_run(
        &self,
    ) -> crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder
    {
        crate::operation::get_dashboard_for_job_run::builders::GetDashboardForJobRunFluentBuilder::new(self.handle.clone())
    }
}