aws_sdk_quicksight/client/update_dashboard_links.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 [`UpdateDashboardLinks`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the dashboard whose links you want to update.</p><br>
7 /// - [`dashboard_id(impl Into<String>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::dashboard_id) / [`set_dashboard_id(Option<String>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::set_dashboard_id):<br>required: **true**<br><p>The ID for the dashboard.</p><br>
8 /// - [`link_entities(impl Into<String>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::link_entities) / [`set_link_entities(Option<Vec::<String>>)`](crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::set_link_entities):<br>required: **true**<br><p>list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.</p><br>
9 /// - On success, responds with [`UpdateDashboardLinksOutput`](crate::operation::update_dashboard_links::UpdateDashboardLinksOutput) with field(s):
10 /// - [`request_id(Option<String>)`](crate::operation::update_dashboard_links::UpdateDashboardLinksOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - [`status(i32)`](crate::operation::update_dashboard_links::UpdateDashboardLinksOutput::status): <p>The HTTP status of the request.</p>
12 /// - [`dashboard_arn(Option<String>)`](crate::operation::update_dashboard_links::UpdateDashboardLinksOutput::dashboard_arn): <p>The Amazon Resource Name (ARN) of the dashboard.</p>
13 /// - [`link_entities(Option<Vec::<String>>)`](crate::operation::update_dashboard_links::UpdateDashboardLinksOutput::link_entities): <p>A list of analysis Amazon Resource Names (ARNs) to be linked to the dashboard.</p>
14 /// - On failure, responds with [`SdkError<UpdateDashboardLinksError>`](crate::operation::update_dashboard_links::UpdateDashboardLinksError)
15 pub fn update_dashboard_links(&self) -> crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder {
16 crate::operation::update_dashboard_links::builders::UpdateDashboardLinksFluentBuilder::new(self.handle.clone())
17 }
18}