aws_sdk_quicksight/client/update_brand_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 [`UpdateBrandPublishedVersion`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that owns the brand.</p><br>
7 /// - [`brand_id(impl Into<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::brand_id) / [`set_brand_id(Option<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::set_brand_id):<br>required: **true**<br><p>The ID of the Amazon QuickSight brand.</p><br>
8 /// - [`version_id(impl Into<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::version_id) / [`set_version_id(Option<String>)`](crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::set_version_id):<br>required: **true**<br><p>The ID of the published version.</p><br>
9 /// - On success, responds with [`UpdateBrandPublishedVersionOutput`](crate::operation::update_brand_published_version::UpdateBrandPublishedVersionOutput) with field(s):
10 /// - [`request_id(Option<String>)`](crate::operation::update_brand_published_version::UpdateBrandPublishedVersionOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
11 /// - [`version_id(Option<String>)`](crate::operation::update_brand_published_version::UpdateBrandPublishedVersionOutput::version_id): <p>The ID of the published version.</p>
12 /// - On failure, responds with [`SdkError<UpdateBrandPublishedVersionError>`](crate::operation::update_brand_published_version::UpdateBrandPublishedVersionError)
13 pub fn update_brand_published_version(
14 &self,
15 ) -> crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder {
16 crate::operation::update_brand_published_version::builders::UpdateBrandPublishedVersionFluentBuilder::new(self.handle.clone())
17 }
18}