[][src]Struct rusoto_quicksight::Analysis

pub struct Analysis {
    pub analysis_id: Option<String>,
    pub arn: Option<String>,
    pub created_time: Option<f64>,
    pub data_set_arns: Option<Vec<String>>,
    pub errors: Option<Vec<AnalysisError>>,
    pub last_updated_time: Option<f64>,
    pub name: Option<String>,
    pub sheets: Option<Vec<Sheet>>,
    pub status: Option<String>,
    pub theme_arn: Option<String>,
}

Metadata structure for an analysis in Amazon QuickSight

Fields

analysis_id: Option<String>

The ID of the analysis.

arn: Option<String>

The Amazon Resource Name (ARN) of the analysis.

created_time: Option<f64>

The time that the analysis was created.

data_set_arns: Option<Vec<String>>

The ARNs of the datasets of the analysis.

errors: Option<Vec<AnalysisError>>

Errors associated with the analysis.

last_updated_time: Option<f64>

The time that the analysis was last updated.

name: Option<String>

The descriptive name of the analysis.

sheets: Option<Vec<Sheet>>

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

status: Option<String>

Status associated with the analysis.

theme_arn: Option<String>

The ARN of the theme of the analysis.

Trait Implementations

impl Clone for Analysis[src]

impl Debug for Analysis[src]

impl Default for Analysis[src]

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

impl PartialEq<Analysis> for Analysis[src]

impl StructuralPartialEq for Analysis[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.