Struct aws_sdk_quicksight::model::TemplateVersion
source · [−]#[non_exhaustive]pub struct TemplateVersion {
pub created_time: Option<DateTime>,
pub errors: Option<Vec<TemplateError>>,
pub version_number: Option<i64>,
pub status: Option<ResourceStatus>,
pub data_set_configurations: Option<Vec<DataSetConfiguration>>,
pub description: Option<String>,
pub source_entity_arn: Option<String>,
pub theme_arn: Option<String>,
pub sheets: Option<Vec<Sheet>>,
}Expand description
A version of a template.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.created_time: Option<DateTime>The time that this template version was created.
errors: Option<Vec<TemplateError>>Errors associated with this template version.
version_number: Option<i64>The version number of the template version.
status: Option<ResourceStatus>The HTTP status of the request.
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.
source_entity_arn: Option<String>The Amazon Resource Name (ARN) of an analysis or template that was used to create this template.
theme_arn: Option<String>The ARN of the theme associated with this version of the template.
sheets: Option<Vec<Sheet>>A list of the associated sheets with the unique identifier and name of each sheet.
Implementations
sourceimpl TemplateVersion
impl TemplateVersion
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that this template version was created.
sourcepub fn errors(&self) -> Option<&[TemplateError]>
pub fn errors(&self) -> Option<&[TemplateError]>
Errors associated with this template version.
sourcepub fn version_number(&self) -> Option<i64>
pub fn version_number(&self) -> Option<i64>
The version number of the template version.
sourcepub fn status(&self) -> Option<&ResourceStatus>
pub fn status(&self) -> Option<&ResourceStatus>
The HTTP status of the request.
sourcepub fn data_set_configurations(&self) -> Option<&[DataSetConfiguration]>
pub fn data_set_configurations(&self) -> Option<&[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.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the template.
sourcepub fn source_entity_arn(&self) -> Option<&str>
pub fn source_entity_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an analysis or template that was used to create this template.
sourceimpl TemplateVersion
impl TemplateVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TemplateVersion.
Trait Implementations
sourceimpl Clone for TemplateVersion
impl Clone for TemplateVersion
sourcefn clone(&self) -> TemplateVersion
fn clone(&self) -> TemplateVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for TemplateVersion
impl Debug for TemplateVersion
sourceimpl PartialEq<TemplateVersion> for TemplateVersion
impl PartialEq<TemplateVersion> for TemplateVersion
sourcefn eq(&self, other: &TemplateVersion) -> bool
fn eq(&self, other: &TemplateVersion) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TemplateVersion) -> bool
fn ne(&self, other: &TemplateVersion) -> bool
This method tests for !=.
impl StructuralPartialEq for TemplateVersion
Auto Trait Implementations
impl RefUnwindSafe for TemplateVersion
impl Send for TemplateVersion
impl Sync for TemplateVersion
impl Unpin for TemplateVersion
impl UnwindSafe for TemplateVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more