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 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 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 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 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.
Trait Implementations§
source§impl Clone for ThemeBuilder
impl Clone for ThemeBuilder
source§fn clone(&self) -> ThemeBuilder
fn clone(&self) -> ThemeBuilder
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 ThemeBuilder
impl Debug for ThemeBuilder
source§impl Default for ThemeBuilder
impl Default for ThemeBuilder
source§fn default() -> ThemeBuilder
fn default() -> ThemeBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ThemeBuilder> for ThemeBuilder
impl PartialEq<ThemeBuilder> for ThemeBuilder
source§fn eq(&self, other: &ThemeBuilder) -> bool
fn eq(&self, other: &ThemeBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ThemeBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more