#[non_exhaustive]
pub struct Template { pub arn: Option<String>, pub name: Option<String>, pub version: Option<TemplateVersion>, pub template_id: Option<String>, pub last_updated_time: Option<DateTime>, pub created_time: Option<DateTime>, }
Expand description

A template object. A template is an entity in Amazon 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 Amazon Web Services accounts by allowing users in other Amazon Web Services accounts to create a template or a dashboard from an existing template.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
arn: Option<String>

The Amazon Resource Name (ARN) of the template.

name: Option<String>

The display name of the template.

version: Option<TemplateVersion>

A structure describing the versions of the template.

template_id: Option<String>

The ID for the template. This is unique per Amazon Web Services Region for each Amazon Web Services account.

last_updated_time: Option<DateTime>

Time when this was last updated.

created_time: Option<DateTime>

Time when this was created.

Implementations

The Amazon Resource Name (ARN) of the template.

The display name of the template.

A structure describing the versions of the template.

The ID for the template. This is unique per Amazon Web Services Region for each Amazon Web Services account.

Time when this was last updated.

Time when this was created.

Creates a new builder-style object to manufacture Template

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more