Struct rusoto_cloudwatch::PutDashboardInput[][src]

pub struct PutDashboardInput {
    pub dashboard_body: String,
    pub dashboard_name: String,
}

Fields

The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard. This parameter is required.

For more information about the syntax, see CloudWatch-Dashboard-Body-Structure.

The name of the dashboard. If a dashboard with this name already exists, this call modifies that dashboard, replacing its current contents. Otherwise, a new dashboard is created. The maximum length is 255, and valid characters are A-Z, a-z, 0-9, "-", and "_". This parameter is required.

Trait Implementations

impl Default for PutDashboardInput
[src]

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

impl Debug for PutDashboardInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutDashboardInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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