1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteThemeAlias`](crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteThemeAliasOutput`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput) with field(s):
    ///   - [`alias_name(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::alias_name): <p>The name for the theme alias.</p>
    ///   - [`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>
    ///   - [`request_id(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::status): <p>The HTTP status of the request.</p>
    ///   - [`theme_id(Option<String>)`](crate::operation::delete_theme_alias::DeleteThemeAliasOutput::theme_id): <p>An ID for the theme associated with the deletion.</p>
    /// - On failure, responds with [`SdkError<DeleteThemeAliasError>`](crate::operation::delete_theme_alias::DeleteThemeAliasError)
    pub fn delete_theme_alias(&self) -> crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder {
        crate::operation::delete_theme_alias::builders::DeleteThemeAliasFluentBuilder::new(self.handle.clone())
    }
}