1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateDashboardPublishedVersion`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the dashboard that you're updating.</p><br>
    ///   - [`dashboard_id(impl Into<String>)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::dashboard_id) / [`set_dashboard_id(Option<String>)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::set_dashboard_id):<br>required: **true**<br><p>The ID for the dashboard.</p><br>
    ///   - [`version_number(i64)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::version_number) / [`set_version_number(Option<i64>)`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::set_version_number):<br>required: **true**<br><p>The version number of the dashboard.</p><br>
    /// - On success, responds with [`UpdateDashboardPublishedVersionOutput`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput) with field(s):
    ///   - [`dashboard_id(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::dashboard_id): <p>The ID for the dashboard.</p>
    ///   - [`dashboard_arn(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::dashboard_arn): <p>The Amazon Resource Name (ARN) of the dashboard.</p>
    ///   - [`status(i32)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<UpdateDashboardPublishedVersionError>`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionError)
    pub fn update_dashboard_published_version(
        &self,
    ) -> crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder {
        crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::new(self.handle.clone())
    }
}