Struct aws_sdk_quicksight::types::TemplateVersion
source · #[non_exhaustive]pub struct TemplateVersion { /* private fields */ }Expand description
A version of a template.
Implementations§
source§impl 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 status that is associated with the template.
-
CREATION_IN_PROGRESS -
CREATION_SUCCESSFUL -
CREATION_FAILED -
UPDATE_IN_PROGRESS -
UPDATE_SUCCESSFUL -
UPDATE_FAILED -
DELETED
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.
source§impl TemplateVersion
impl TemplateVersion
sourcepub fn builder() -> TemplateVersionBuilder
pub fn builder() -> TemplateVersionBuilder
Creates a new builder-style object to manufacture TemplateVersion.
Trait Implementations§
source§impl Clone for TemplateVersion
impl Clone for TemplateVersion
source§fn clone(&self) -> TemplateVersion
fn clone(&self) -> TemplateVersion
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TemplateVersion
impl Debug for TemplateVersion
source§impl PartialEq<TemplateVersion> for TemplateVersion
impl PartialEq<TemplateVersion> for TemplateVersion
source§fn 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 ==.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more