[][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 source_entity_arn: Option<String>,
    pub status: 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. The idea is that any dashboard created from the template should be bound to new datasets matching the same schema described through this API. .

description: Option<String>

The description of the template.

errors: Option<Vec<TemplateError>>

Errors associated with the template.

source_entity_arn: Option<String>

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

status: Option<String>

The HTTP status of the request.

version_number: Option<i64>

The version number of the template.

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> 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.