[][src]Struct rusoto_quicksight::Template

pub struct Template {
    pub arn: Option<String>,
    pub created_time: Option<f64>,
    pub last_updated_time: Option<f64>,
    pub name: Option<String>,
    pub template_id: Option<String>,
    pub version: Option<TemplateVersion>,
}

A template object. A template is an entity in QuickSight that encapsulates the metadata required to create an analysis and that you can use to create a dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with an analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.

You can share templates across AWS accounts by allowing users in other AWS accounts to create a template or a dashboard from an existing template.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the template.

created_time: Option<f64>

Time when this was created.

last_updated_time: Option<f64>

Time when this was last updated.

name: Option<String>

The display name of the template.

template_id: Option<String>

The ID for the template. This is unique per AWS Region for each AWS account.

version: Option<TemplateVersion>

A structure describing the versions of the template.

Trait Implementations

impl Clone for Template[src]

impl Debug for Template[src]

impl Default for Template[src]

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

impl PartialEq<Template> for Template[src]

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