[][src]Struct rusoto_quicksight::CreateAccountCustomizationRequest

pub struct CreateAccountCustomizationRequest {
    pub account_customization: AccountCustomization,
    pub aws_account_id: String,
    pub namespace: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

account_customization: AccountCustomization

The QuickSight customizations you're adding in the current AWS Region. You can add these to an AWS account and a QuickSight namespace.

For example, you can add a default theme by setting AccountCustomization to the midnight theme: "AccountCustomization": { "DefaultTheme": "arn:aws:quicksight::aws:theme/MIDNIGHT" }. Or, you can add a custom theme by specifying "AccountCustomization": { "DefaultTheme": "arn:aws:quicksight:us-west-2:111122223333:theme/bdb844d0-0fe9-4d9d-b520-0fe602d93639" }.

aws_account_id: String

The ID for the AWS account that you want to customize QuickSight for.

namespace: Option<String>

The QuickSight namespace that you want to add customizations to.

tags: Option<Vec<Tag>>

A list of the tags that you want to attach to this resource.

Trait Implementations

impl Clone for CreateAccountCustomizationRequest[src]

impl Debug for CreateAccountCustomizationRequest[src]

impl Default for CreateAccountCustomizationRequest[src]

impl PartialEq<CreateAccountCustomizationRequest> for CreateAccountCustomizationRequest[src]

impl Serialize for CreateAccountCustomizationRequest[src]

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