Struct aws_sdk_quicksight::model::ThemeSummary
source · [−]#[non_exhaustive]pub struct ThemeSummary {
pub arn: Option<String>,
pub name: Option<String>,
pub theme_id: Option<String>,
pub latest_version_number: Option<i64>,
pub created_time: Option<DateTime>,
pub last_updated_time: Option<DateTime>,
}Expand description
The theme summary.
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.arn: Option<String>The Amazon Resource Name (ARN) of the resource.
name: Option<String>the display name for the theme.
theme_id: Option<String>The ID of the theme. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
latest_version_number: Option<i64>The latest version number for the theme.
created_time: Option<DateTime>The date and time that this theme was created.
last_updated_time: Option<DateTime>The last date and time that this theme was updated.
Implementations
sourceimpl ThemeSummary
impl ThemeSummary
sourcepub fn theme_id(&self) -> Option<&str>
pub fn theme_id(&self) -> Option<&str>
The ID of the theme. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
sourcepub fn latest_version_number(&self) -> Option<i64>
pub fn latest_version_number(&self) -> Option<i64>
The latest version number for the theme.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The date and time that this theme was created.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The last date and time that this theme was updated.
sourceimpl ThemeSummary
impl ThemeSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ThemeSummary.
Trait Implementations
sourceimpl Clone for ThemeSummary
impl Clone for ThemeSummary
sourcefn clone(&self) -> ThemeSummary
fn clone(&self) -> ThemeSummary
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 ThemeSummary
impl Debug for ThemeSummary
sourceimpl PartialEq<ThemeSummary> for ThemeSummary
impl PartialEq<ThemeSummary> for ThemeSummary
sourcefn eq(&self, other: &ThemeSummary) -> bool
fn eq(&self, other: &ThemeSummary) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ThemeSummary) -> bool
fn ne(&self, other: &ThemeSummary) -> bool
This method tests for !=.
impl StructuralPartialEq for ThemeSummary
Auto Trait Implementations
impl RefUnwindSafe for ThemeSummary
impl Send for ThemeSummary
impl Sync for ThemeSummary
impl Unpin for ThemeSummary
impl UnwindSafe for ThemeSummary
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