aws_sdk_quicksight/client/delete_account_customization.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 [`DeleteAccountCustomization`](crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`aws_account_id(impl Into<String>)`](crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID for the Amazon Web Services account that you want to delete Amazon QuickSight customizations from in this Amazon Web Services Region.</p><br>
7 /// - [`namespace(impl Into<String>)`](crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder::namespace) / [`set_namespace(Option<String>)`](crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder::set_namespace):<br>required: **false**<br><p>The Amazon QuickSight namespace that you're deleting the customizations from.</p><br>
8 /// - On success, responds with [`DeleteAccountCustomizationOutput`](crate::operation::delete_account_customization::DeleteAccountCustomizationOutput) with field(s):
9 /// - [`request_id(Option<String>)`](crate::operation::delete_account_customization::DeleteAccountCustomizationOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
10 /// - [`status(i32)`](crate::operation::delete_account_customization::DeleteAccountCustomizationOutput::status): <p>The HTTP status of the request.</p>
11 /// - On failure, responds with [`SdkError<DeleteAccountCustomizationError>`](crate::operation::delete_account_customization::DeleteAccountCustomizationError)
12 pub fn delete_account_customization(&self) -> crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder {
13 crate::operation::delete_account_customization::builders::DeleteAccountCustomizationFluentBuilder::new(self.handle.clone())
14 }
15}