aws_sdk_quicksight/client/
delete_theme_alias.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 [`DeleteThemeAlias`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the theme alias to delete.</p><br>
7    ///   - [`theme_id(impl Into<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::theme_id) / [`set_theme_id(Option<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::set_theme_id):<br>required: **true**<br><p>The ID for the theme that the specified alias is for.</p><br>
8    ///   - [`alias_name(impl Into<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::alias_name) / [`set_alias_name(Option<String>)`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::set_alias_name):<br>required: **true**<br><p>The unique name for the theme alias to delete.</p><br>
9    /// - On success, responds with [`DeleteThemeAliasOutput`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput) with field(s):
10    ///   - [`alias_name(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::alias_name): <p>The name for the theme alias.</p>
11    ///   - [`arn(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::arn): <p>The Amazon Resource Name (ARN) of the theme resource using the deleted alias.</p>
12    ///   - [`request_id(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
13    ///   - [`status(i32)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::status): <p>The HTTP status of the request.</p>
14    ///   - [`theme_id(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::theme_id): <p>An ID for the theme associated with the deletion.</p>
15    /// - On failure, responds with [`SdkError<DeleteThemeAliasError>`](crate::operation::delete_theme_alias::DeleteThemeAliasError)
16    pub fn delete_theme_alias(&self) -> crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder {
17        crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::new(self.handle.clone())
18    }
19}