aws_sdk_appstream/client/describe_theme_for_stack.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 [`DescribeThemeForStack`](crate::operation::describe_theme_for_stack::builders::DescribeThemeForStackFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`stack_name(impl Into<String>)`](crate::operation::describe_theme_for_stack::builders::DescribeThemeForStackFluentBuilder::stack_name) / [`set_stack_name(Option<String>)`](crate::operation::describe_theme_for_stack::builders::DescribeThemeForStackFluentBuilder::set_stack_name):<br>required: **true**<br><p>The name of the stack for the theme.</p><br>
7 /// - On success, responds with [`DescribeThemeForStackOutput`](crate::operation::describe_theme_for_stack::DescribeThemeForStackOutput) with field(s):
8 /// - [`theme(Option<Theme>)`](crate::operation::describe_theme_for_stack::DescribeThemeForStackOutput::theme): <p>The theme object that contains the metadata of the custom branding.</p>
9 /// - On failure, responds with [`SdkError<DescribeThemeForStackError>`](crate::operation::describe_theme_for_stack::DescribeThemeForStackError)
10 pub fn describe_theme_for_stack(&self) -> crate::operation::describe_theme_for_stack::builders::DescribeThemeForStackFluentBuilder {
11 crate::operation::describe_theme_for_stack::builders::DescribeThemeForStackFluentBuilder::new(self.handle.clone())
12 }
13}