1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDashboard`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the dashboard that you're describing.</p><br>
    ///   - [`dashboard_id(impl Into<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::dashboard_id) / [`set_dashboard_id(Option<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::set_dashboard_id):<br>required: **true**<br><p>The ID for the dashboard.</p><br>
    ///   - [`version_number(i64)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::version_number) / [`set_version_number(Option<i64>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::set_version_number):<br>required: **false**<br><p>The version number for the dashboard. If a version number isn't passed, the latest published dashboard version is described. </p><br>
    ///   - [`alias_name(impl Into<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::alias_name) / [`set_alias_name(Option<String>)`](crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::set_alias_name):<br>required: **false**<br><p>The alias name.</p><br>
    /// - On success, responds with [`DescribeDashboardOutput`](crate::operation::describe_dashboard::DescribeDashboardOutput) with field(s):
    ///   - [`dashboard(Option<Dashboard>)`](crate::operation::describe_dashboard::DescribeDashboardOutput::dashboard): <p>Information about the dashboard.</p>
    ///   - [`status(i32)`](crate::operation::describe_dashboard::DescribeDashboardOutput::status): <p>The HTTP status of this request.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::describe_dashboard::DescribeDashboardOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<DescribeDashboardError>`](crate::operation::describe_dashboard::DescribeDashboardError)
    pub fn describe_dashboard(&self) -> crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder {
        crate::operation::describe_dashboard::builders::DescribeDashboardFluentBuilder::new(self.handle.clone())
    }
}