Struct aws_sdk_quicksight::types::builders::ThemeBuilder
source · #[non_exhaustive]pub struct ThemeBuilder { /* private fields */ }Expand description
A builder for Theme.
Implementations§
source§impl ThemeBuilder
impl ThemeBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the theme.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the theme.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name that the user gives to the theme.
sourcepub fn theme_id(self, input: impl Into<String>) -> Self
pub fn theme_id(self, input: impl Into<String>) -> Self
The identifier that the user gives to the theme.
sourcepub fn set_theme_id(self, input: Option<String>) -> Self
pub fn set_theme_id(self, input: Option<String>) -> Self
The identifier that the user gives to the theme.
sourcepub fn get_theme_id(&self) -> &Option<String>
pub fn get_theme_id(&self) -> &Option<String>
The identifier that the user gives to the theme.
sourcepub fn version(self, input: ThemeVersion) -> Self
pub fn version(self, input: ThemeVersion) -> Self
A version of a theme.
sourcepub fn set_version(self, input: Option<ThemeVersion>) -> Self
pub fn set_version(self, input: Option<ThemeVersion>) -> Self
A version of a theme.
sourcepub fn get_version(&self) -> &Option<ThemeVersion>
pub fn get_version(&self) -> &Option<ThemeVersion>
A version of a theme.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The date and time that the theme was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
The date and time that the theme was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The date and time that the theme was created.
sourcepub fn last_updated_time(self, input: DateTime) -> Self
pub fn last_updated_time(self, input: DateTime) -> Self
The date and time that the theme was last updated.
sourcepub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_time(self, input: Option<DateTime>) -> Self
The date and time that the theme was last updated.
sourcepub fn get_last_updated_time(&self) -> &Option<DateTime>
pub fn get_last_updated_time(&self) -> &Option<DateTime>
The date and time that the theme was last updated.
sourcepub fn type(self, input: ThemeType) -> Self
pub fn type(self, input: ThemeType) -> Self
The type of theme, based on how it was created. Valid values include: QUICKSIGHT and CUSTOM.
sourcepub fn set_type(self, input: Option<ThemeType>) -> Self
pub fn set_type(self, input: Option<ThemeType>) -> Self
The type of theme, based on how it was created. Valid values include: QUICKSIGHT and CUSTOM.
Trait Implementations§
source§impl Clone for ThemeBuilder
impl Clone for ThemeBuilder
source§fn clone(&self) -> ThemeBuilder
fn clone(&self) -> ThemeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ThemeBuilder
impl Debug for ThemeBuilder
source§impl Default for ThemeBuilder
impl Default for ThemeBuilder
source§fn default() -> ThemeBuilder
fn default() -> ThemeBuilder
source§impl PartialEq for ThemeBuilder
impl PartialEq for ThemeBuilder
source§fn eq(&self, other: &ThemeBuilder) -> bool
fn eq(&self, other: &ThemeBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ThemeBuilder
Auto Trait Implementations§
impl Freeze for ThemeBuilder
impl RefUnwindSafe for ThemeBuilder
impl Send for ThemeBuilder
impl Sync for ThemeBuilder
impl Unpin for ThemeBuilder
impl UnwindSafe for ThemeBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more