[][src]Struct rusoto_quicksight::TemplateVersion

pub struct TemplateVersion {
    pub created_time: Option<f64>,
    pub data_set_configurations: Option<Vec<DataSetConfiguration>>,
    pub description: Option<String>,
    pub errors: Option<Vec<TemplateError>>,
    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>,
}

A version of a template.

Fields

created_time: Option<f64>

The time that this template version was created.

data_set_configurations: Option<Vec<DataSetConfiguration>>

Schema of the dataset identified by the placeholder. Any dashboard created from this template should be bound to new datasets matching the same schema described through this API operation.

description: Option<String>

The description of the template.

errors: Option<Vec<TemplateError>>

Errors associated with this template 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>

The Amazon Resource Name (ARN) of an analysis or template that was used to create this template.

status: Option<String>

The HTTP status of the request.

theme_arn: Option<String>

The ARN of the theme associated with this version of the template.

version_number: Option<i64>

The version number of the template version.

Trait Implementations

impl Clone for TemplateVersion[src]

impl Debug for TemplateVersion[src]

impl Default for TemplateVersion[src]

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

impl PartialEq<TemplateVersion> for TemplateVersion[src]

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