Struct rusoto_cloudwatch::DashboardEntry[][src]

pub struct DashboardEntry {
    pub dashboard_arn: Option<String>,
    pub dashboard_name: Option<String>,
    pub last_modified: Option<String>,
    pub size: Option<i64>,
}

Represents a specific dashboard.

Fields

The Amazon Resource Name (ARN) of the dashboard.

The name of the dashboard.

The time stamp of when the dashboard was last modified, either by an API call or through the console. This number is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC.

The size of the dashboard, in bytes.

Trait Implementations

impl Default for DashboardEntry
[src]

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

impl Debug for DashboardEntry
[src]

Formats the value using the given formatter. Read more

impl Clone for DashboardEntry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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