pub struct UpdateThemeRequest {
pub aws_account_id: String,
pub base_theme_id: String,
pub configuration: Option<ThemeConfiguration>,
pub name: Option<String>,
pub theme_id: String,
pub version_description: Option<String>,
}
Fields§
§aws_account_id: String
The ID of the AWS account that contains the theme that you're updating.
base_theme_id: String
The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default QuickSight theme.
configuration: Option<ThemeConfiguration>
The theme configuration, which contains the theme display properties.
name: Option<String>
The name for the theme.
theme_id: String
The ID for the theme.
version_description: Option<String>
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
.
Trait Implementations§
Source§impl Clone for UpdateThemeRequest
impl Clone for UpdateThemeRequest
Source§fn clone(&self) -> UpdateThemeRequest
fn clone(&self) -> UpdateThemeRequest
Returns a duplicate 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 UpdateThemeRequest
impl Debug for UpdateThemeRequest
Source§impl Default for UpdateThemeRequest
impl Default for UpdateThemeRequest
Source§fn default() -> UpdateThemeRequest
fn default() -> UpdateThemeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateThemeRequest
impl PartialEq for UpdateThemeRequest
Source§impl Serialize for UpdateThemeRequest
impl Serialize for UpdateThemeRequest
impl StructuralPartialEq for UpdateThemeRequest
Auto Trait Implementations§
impl Freeze for UpdateThemeRequest
impl RefUnwindSafe for UpdateThemeRequest
impl Send for UpdateThemeRequest
impl Sync for UpdateThemeRequest
impl Unpin for UpdateThemeRequest
impl UnwindSafe for UpdateThemeRequest
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