Struct rusoto_cloudwatch::PutDashboardOutput[][src]

pub struct PutDashboardOutput {
    pub dashboard_validation_messages: Option<Vec<DashboardValidationMessage>>,
}

Fields

If the input for PutDashboard was correct and the dashboard was successfully created or modified, this result is empty.

If this result includes only warning messages, then the input was valid enough for the dashboard to be created or modified, but some elements of the dashboard may not render.

If this result includes error messages, the input was not valid and the operation failed.

Trait Implementations

impl Default for PutDashboardOutput
[src]

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

impl Debug for PutDashboardOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutDashboardOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutDashboardOutput
[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