#[non_exhaustive]pub struct UpdateThemeInputBuilder { /* private fields */ }Expand description
A builder for UpdateThemeInput.
Implementations§
source§impl UpdateThemeInputBuilder
impl UpdateThemeInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the theme that you're updating.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the theme that you're updating.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the theme that you're updating.
sourcepub fn theme_id(self, input: impl Into<String>) -> Self
pub fn theme_id(self, input: impl Into<String>) -> Self
The ID for the theme.
This field is required.sourcepub fn set_theme_id(self, input: Option<String>) -> Self
pub fn set_theme_id(self, input: Option<String>) -> Self
The ID for the theme.
sourcepub fn get_theme_id(&self) -> &Option<String>
pub fn get_theme_id(&self) -> &Option<String>
The ID for the theme.
sourcepub fn base_theme_id(self, input: impl Into<String>) -> Self
pub fn base_theme_id(self, input: impl Into<String>) -> Self
The theme ID, defined by Amazon QuickSight, that a custom theme inherits from. All themes initially inherit from a default Amazon QuickSight theme.
This field is required.sourcepub fn set_base_theme_id(self, input: Option<String>) -> Self
pub fn set_base_theme_id(self, input: Option<String>) -> Self
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 get_base_theme_id(&self) -> &Option<String>
pub fn get_base_theme_id(&self) -> &Option<String>
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, input: impl Into<String>) -> Self
pub fn version_description(self, input: impl Into<String>) -> Self
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 set_version_description(self, input: Option<String>) -> Self
pub fn set_version_description(self, input: Option<String>) -> Self
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 get_version_description(&self) -> &Option<String>
pub fn get_version_description(&self) -> &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.
sourcepub fn configuration(self, input: ThemeConfiguration) -> Self
pub fn configuration(self, input: ThemeConfiguration) -> Self
The theme configuration, which contains the theme display properties.
sourcepub fn set_configuration(self, input: Option<ThemeConfiguration>) -> Self
pub fn set_configuration(self, input: Option<ThemeConfiguration>) -> Self
The theme configuration, which contains the theme display properties.
sourcepub fn get_configuration(&self) -> &Option<ThemeConfiguration>
pub fn get_configuration(&self) -> &Option<ThemeConfiguration>
The theme configuration, which contains the theme display properties.
sourcepub fn build(self) -> Result<UpdateThemeInput, BuildError>
pub fn build(self) -> Result<UpdateThemeInput, BuildError>
Consumes the builder and constructs a UpdateThemeInput.
source§impl UpdateThemeInputBuilder
impl UpdateThemeInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateThemeOutput, SdkError<UpdateThemeError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateThemeOutput, SdkError<UpdateThemeError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateThemeInputBuilder
impl Clone for UpdateThemeInputBuilder
source§fn clone(&self) -> UpdateThemeInputBuilder
fn clone(&self) -> UpdateThemeInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateThemeInputBuilder
impl Debug for UpdateThemeInputBuilder
source§impl Default for UpdateThemeInputBuilder
impl Default for UpdateThemeInputBuilder
source§fn default() -> UpdateThemeInputBuilder
fn default() -> UpdateThemeInputBuilder
source§impl PartialEq for UpdateThemeInputBuilder
impl PartialEq for UpdateThemeInputBuilder
source§fn eq(&self, other: &UpdateThemeInputBuilder) -> bool
fn eq(&self, other: &UpdateThemeInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateThemeInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateThemeInputBuilder
impl RefUnwindSafe for UpdateThemeInputBuilder
impl Send for UpdateThemeInputBuilder
impl Sync for UpdateThemeInputBuilder
impl Unpin for UpdateThemeInputBuilder
impl UnwindSafe for UpdateThemeInputBuilder
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