[][src]Struct rusoto_quicksight::UpdateThemeRequest

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

impl Clone for UpdateThemeRequest[src]

impl Debug for UpdateThemeRequest[src]

impl Default for UpdateThemeRequest[src]

impl PartialEq<UpdateThemeRequest> for UpdateThemeRequest[src]

impl Serialize for UpdateThemeRequest[src]

impl StructuralPartialEq for UpdateThemeRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.