Struct aws_sdk_quicksight::model::ThemeVersion
source · [−]#[non_exhaustive]pub struct ThemeVersion {
pub version_number: Option<i64>,
pub arn: Option<String>,
pub description: Option<String>,
pub base_theme_id: Option<String>,
pub created_time: Option<DateTime>,
pub configuration: Option<ThemeConfiguration>,
pub errors: Option<Vec<ThemeError>>,
pub status: Option<ResourceStatus>,
}Expand description
A version of a theme.
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.version_number: Option<i64>The version number of the theme.
arn: Option<String>The Amazon Resource Name (ARN) of the resource.
description: Option<String>The description of the theme.
base_theme_id: Option<String>The Amazon QuickSight-defined ID of the theme that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.
created_time: Option<DateTime>The date and time that this theme version was created.
configuration: Option<ThemeConfiguration>The theme configuration, which contains all the theme display properties.
errors: Option<Vec<ThemeError>>Errors associated with the theme.
status: Option<ResourceStatus>The status of the theme version.
Implementations
sourceimpl 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.
sourceimpl ThemeVersion
impl ThemeVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ThemeVersion.
Trait Implementations
sourceimpl Clone for ThemeVersion
impl Clone for ThemeVersion
sourcefn clone(&self) -> ThemeVersion
fn clone(&self) -> ThemeVersion
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 ThemeVersion
impl Debug for ThemeVersion
sourceimpl PartialEq<ThemeVersion> for ThemeVersion
impl PartialEq<ThemeVersion> for ThemeVersion
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &ThemeVersion) -> bool
fn ne(&self, other: &ThemeVersion) -> bool
This method tests for !=.
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
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