Struct rusoto_cloudwatch::GetDashboardOutput[][src]

pub struct GetDashboardOutput {
    pub dashboard_arn: Option<String>,
    pub dashboard_body: Option<String>,
    pub dashboard_name: Option<String>,
}

Fields

The Amazon Resource Name (ARN) of the dashboard.

The detailed information about the dashboard, including what widgets are included and their location on the dashboard. For more information about the DashboardBody syntax, see CloudWatch-Dashboard-Body-Structure.

The name of the dashboard.

Trait Implementations

impl Default for GetDashboardOutput
[src]

Returns the "default value" for a type. Read more

impl Debug for GetDashboardOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDashboardOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetDashboardOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations