aws_sdk_quicksight/client/update_dashboard_published_version.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`UpdateDashboardPublishedVersion`](crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`UpdateDashboardPublishedVersionOutput`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput) with field(s):
10 /// - [`dashboard_id(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::dashboard_id): <p>The ID for the dashboard.</p>
11 /// - [`dashboard_arn(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::dashboard_arn): <p>The Amazon Resource Name (ARN) of the dashboard.</p>
12 /// - [`status(i32)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::status): <p>The HTTP status of the request.</p>
13 /// - [`request_id(Option<String>)`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
14 /// - On failure, responds with [`SdkError<UpdateDashboardPublishedVersionError>`](crate::operation::update_dashboard_published_version::UpdateDashboardPublishedVersionError)
15 pub fn update_dashboard_published_version(
16 &self,
17 ) -> crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder {
18 crate::operation::update_dashboard_published_version::builders::UpdateDashboardPublishedVersionFluentBuilder::new(self.handle.clone())
19 }
20}