Struct rusoto_cloudwatch::ListDashboardsInput[][src]

pub struct ListDashboardsInput {
    pub dashboard_name_prefix: Option<String>,
    pub next_token: Option<String>,
}

Fields

If you specify this parameter, only the dashboards with names starting with the specified string are listed. The maximum length is 255, and valid characters are A-Z, a-z, 0-9, ".", "-", and "_".

The token returned by a previous call to indicate that there is more data available.

Trait Implementations

impl Default for ListDashboardsInput
[src]

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

impl Debug for ListDashboardsInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListDashboardsInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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