[][src]Struct rusoto_quicksight::CreateThemeRequest

pub struct CreateThemeRequest {
    pub aws_account_id: String,
    pub base_theme_id: String,
    pub configuration: ThemeConfiguration,
    pub name: String,
    pub permissions: Option<Vec<ResourcePermission>>,
    pub tags: Option<Vec<Tag>>,
    pub theme_id: String,
    pub version_description: Option<String>,
}

Fields

aws_account_id: String

The ID of the AWS account where you want to store the new theme.

base_theme_id: String

The ID of the theme that a custom theme will inherit from. All themes inherit from one of the starting themes defined by Amazon QuickSight. For a list of the starting themes, use ListThemes or choose Themes from within a QuickSight analysis.

configuration: ThemeConfiguration

The theme configuration, which contains the theme display properties.

name: String

A display name for the theme.

permissions: Option<Vec<ResourcePermission>>

A valid grouping of resource permissions to apply to the new theme.

tags: Option<Vec<Tag>>

A map of the key-value pairs for the resource tag or tags that you want to add to the resource.

theme_id: String

An ID for the theme that you want to create. The theme ID is unique per AWS Region in each AWS account.

version_description: Option<String>

A description of the first version of the theme that you're creating. Every time UpdateTheme is called, a new version is created. Each version of the theme has a description of the version in the VersionDescription field.

Trait Implementations

impl Clone for CreateThemeRequest[src]

impl Debug for CreateThemeRequest[src]

impl Default for CreateThemeRequest[src]

impl PartialEq<CreateThemeRequest> for CreateThemeRequest[src]

impl Serialize for CreateThemeRequest[src]

impl StructuralPartialEq for CreateThemeRequest[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.