Struct aws_sdk_quicksight::types::ThemeVersion
source · #[non_exhaustive]pub struct ThemeVersion { /* private fields */ }Expand description
A version of a theme.
Implementations§
source§impl ThemeVersion
impl ThemeVersion
sourcepub fn version_number(&self) -> Option<i64>
pub fn version_number(&self) -> Option<i64>
The version number of the theme.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the theme.
sourcepub fn base_theme_id(&self) -> Option<&str>
pub fn base_theme_id(&self) -> Option<&str>
The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time that this theme version was created.
sourcepub fn configuration(&self) -> Option<&ThemeConfiguration>
pub fn configuration(&self) -> Option<&ThemeConfiguration>
The theme configuration, which contains all the theme display properties.
sourcepub fn errors(&self) -> Option<&[ThemeError]>
pub fn errors(&self) -> Option<&[ThemeError]>
Errors associated with the theme.
sourcepub fn status(&self) -> Option<&ResourceStatus>
pub fn status(&self) -> Option<&ResourceStatus>
The status of the theme version.
source§impl ThemeVersion
impl ThemeVersion
sourcepub fn builder() -> ThemeVersionBuilder
pub fn builder() -> ThemeVersionBuilder
Creates a new builder-style object to manufacture ThemeVersion.
Trait Implementations§
source§impl Clone for ThemeVersion
impl Clone for ThemeVersion
source§fn clone(&self) -> ThemeVersion
fn clone(&self) -> ThemeVersion
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 ThemeVersion
impl Debug for ThemeVersion
source§impl PartialEq<ThemeVersion> for ThemeVersion
impl PartialEq<ThemeVersion> for ThemeVersion
source§fn eq(&self, other: &ThemeVersion) -> bool
fn eq(&self, other: &ThemeVersion) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ThemeVersion
Auto Trait Implementations§
impl RefUnwindSafe for ThemeVersion
impl Send for ThemeVersion
impl Sync for ThemeVersion
impl Unpin for ThemeVersion
impl UnwindSafe for ThemeVersion
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