aws_sdk_quicksight/client/update_brand_assignment.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 [`UpdateBrandAssignment`](crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that owns the brand assignment.</p><br>
7 /// - [`brand_arn(impl Into<String>)`](crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder::brand_arn) / [`set_brand_arn(Option<String>)`](crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder::set_brand_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the brand.</p><br>
8 /// - On success, responds with [`UpdateBrandAssignmentOutput`](crate::operation::update_brand_assignment::UpdateBrandAssignmentOutput) with field(s):
9 /// - [`request_id(Option<String>)`](crate::operation::update_brand_assignment::UpdateBrandAssignmentOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
10 /// - [`brand_arn(Option<String>)`](crate::operation::update_brand_assignment::UpdateBrandAssignmentOutput::brand_arn): <p>The Amazon Resource Name (ARN) of the brand.</p>
11 /// - On failure, responds with [`SdkError<UpdateBrandAssignmentError>`](crate::operation::update_brand_assignment::UpdateBrandAssignmentError)
12 pub fn update_brand_assignment(&self) -> crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder {
13 crate::operation::update_brand_assignment::builders::UpdateBrandAssignmentFluentBuilder::new(self.handle.clone())
14 }
15}