[][src]Struct rusoto_pi::DimensionGroup

pub struct DimensionGroup {
    pub dimensions: Option<Vec<String>>,
    pub group: String,
    pub limit: Option<i64>,
}

A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql dimension group consists of the following dimensions: db.sql.id, db.sql.db_id, db.sql.statement, and db.sql.tokenized_id.

Fields

dimensions: Option<Vec<String>>

A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that all of the dimensions in the group were requested, or are present in the response.

Valid values for elements in the Dimensions array are:

group: String

The name of the dimension group. Valid values are:

limit: Option<i64>

The maximum number of items to fetch for this dimension group.

Trait Implementations

impl PartialEq<DimensionGroup> for DimensionGroup[src]

impl Default for DimensionGroup[src]

impl Clone for DimensionGroup[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DimensionGroup[src]

impl Serialize for DimensionGroup[src]

Auto Trait Implementations

impl Send for DimensionGroup

impl Sync for DimensionGroup

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self