[][src]Struct rusoto_quicksight::DashboardVersion

pub struct DashboardVersion {
    pub arn: Option<String>,
    pub created_time: Option<f64>,
    pub data_set_arns: Option<Vec<String>>,
    pub description: Option<String>,
    pub errors: Option<Vec<DashboardError>>,
    pub sheets: Option<Vec<Sheet>>,
    pub source_entity_arn: Option<String>,
    pub status: Option<String>,
    pub theme_arn: Option<String>,
    pub version_number: Option<i64>,
}

Dashboard version.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the resource.

created_time: Option<f64>

The time that this dashboard version was created.

data_set_arns: Option<Vec<String>>

The Amazon Resource Numbers (ARNs) for the datasets that are associated with this version of the dashboard.

description: Option<String>

Description.

errors: Option<Vec<DashboardError>>

Errors associated with this dashboard version.

sheets: Option<Vec<Sheet>>

A list of the associated sheets with the unique identifier and name of each sheet.

source_entity_arn: Option<String>

Source entity ARN.

status: Option<String>

The HTTP status of the request.

theme_arn: Option<String>

The ARN of the theme associated with a version of the dashboard.

version_number: Option<i64>

Version number for this version of the dashboard.

Trait Implementations

impl Clone for DashboardVersion[src]

impl Debug for DashboardVersion[src]

impl Default for DashboardVersion[src]

impl<'de> Deserialize<'de> for DashboardVersion[src]

impl PartialEq<DashboardVersion> for DashboardVersion[src]

impl StructuralPartialEq for DashboardVersion[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.