#[non_exhaustive]pub struct UpdateThemeInput { /* private fields */ }Implementations§
source§impl UpdateThemeInput
impl UpdateThemeInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that contains the theme that you're updating.
sourcepub fn base_theme_id(&self) -> Option<&str>
pub fn base_theme_id(&self) -> Option<&str>
The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.
sourcepub fn version_description(&self) -> Option<&str>
pub fn version_description(&self) -> Option<&str>
A description of the theme version that you're updating Every time that you call UpdateTheme, you create a new version of the theme. Each version of the theme maintains a description of the version in VersionDescription.
sourcepub fn configuration(&self) -> Option<&ThemeConfiguration>
pub fn configuration(&self) -> Option<&ThemeConfiguration>
The theme configuration, which contains the theme display properties.
source§impl UpdateThemeInput
impl UpdateThemeInput
sourcepub fn builder() -> UpdateThemeInputBuilder
pub fn builder() -> UpdateThemeInputBuilder
Creates a new builder-style object to manufacture UpdateThemeInput.
source§impl UpdateThemeInput
impl UpdateThemeInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateTheme, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateTheme, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateTheme>
Trait Implementations§
source§impl Clone for UpdateThemeInput
impl Clone for UpdateThemeInput
source§fn clone(&self) -> UpdateThemeInput
fn clone(&self) -> UpdateThemeInput
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 UpdateThemeInput
impl Debug for UpdateThemeInput
source§impl PartialEq<UpdateThemeInput> for UpdateThemeInput
impl PartialEq<UpdateThemeInput> for UpdateThemeInput
source§fn eq(&self, other: &UpdateThemeInput) -> bool
fn eq(&self, other: &UpdateThemeInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateThemeInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateThemeInput
impl Send for UpdateThemeInput
impl Sync for UpdateThemeInput
impl Unpin for UpdateThemeInput
impl UnwindSafe for UpdateThemeInput
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