aws_sdk_quicksight/client/
delete_brand.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 [`DeleteBrand`](crate::operation::delete_brand::builders::DeleteBrandFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::delete_brand::builders::DeleteBrandFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_brand::builders::DeleteBrandFluentBuilder::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::delete_brand::builders::DeleteBrandFluentBuilder::brand_id) / [`set_brand_id(Option<String>)`](crate::operation::delete_brand::builders::DeleteBrandFluentBuilder::set_brand_id):<br>required: **true**<br><p>The ID of the Amazon QuickSight brand.</p><br>
8    /// - On success, responds with [`DeleteBrandOutput`](crate::operation::delete_brand::DeleteBrandOutput) with field(s):
9    ///   - [`request_id(Option<String>)`](crate::operation::delete_brand::DeleteBrandOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
10    /// - On failure, responds with [`SdkError<DeleteBrandError>`](crate::operation::delete_brand::DeleteBrandError)
11    pub fn delete_brand(&self) -> crate::operation::delete_brand::builders::DeleteBrandFluentBuilder {
12        crate::operation::delete_brand::builders::DeleteBrandFluentBuilder::new(self.handle.clone())
13    }
14}