aws_sdk_quicksight/client/
describe_brand_published_version.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 [`DescribeBrandPublishedVersion`](crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder::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::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder::brand_id) / [`set_brand_id(Option<String>)`](crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder::set_brand_id):<br>required: **true**<br><p>The ID of the Amazon QuickSight brand.</p><br>
8    /// - On success, responds with [`DescribeBrandPublishedVersionOutput`](crate::operation::describe_brand_published_version::DescribeBrandPublishedVersionOutput) with field(s):
9    ///   - [`request_id(Option<String>)`](crate::operation::describe_brand_published_version::DescribeBrandPublishedVersionOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
10    ///   - [`brand_detail(Option<BrandDetail>)`](crate::operation::describe_brand_published_version::DescribeBrandPublishedVersionOutput::brand_detail): <p>The details of the brand.</p>
11    ///   - [`brand_definition(Option<BrandDefinition>)`](crate::operation::describe_brand_published_version::DescribeBrandPublishedVersionOutput::brand_definition): <p>The definition of the brand.</p>
12    /// - On failure, responds with [`SdkError<DescribeBrandPublishedVersionError>`](crate::operation::describe_brand_published_version::DescribeBrandPublishedVersionError)
13    pub fn describe_brand_published_version(
14        &self,
15    ) -> crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder {
16        crate::operation::describe_brand_published_version::builders::DescribeBrandPublishedVersionFluentBuilder::new(self.handle.clone())
17    }
18}