Struct aws_sdk_quicksight::operation::create_account_customization::builders::CreateAccountCustomizationInputBuilder
source · #[non_exhaustive]pub struct CreateAccountCustomizationInputBuilder { /* private fields */ }Expand description
A builder for CreateAccountCustomizationInput.
Implementations§
source§impl CreateAccountCustomizationInputBuilder
impl CreateAccountCustomizationInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID for the Amazon Web Services account that you want to customize Amazon QuickSight for.
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 for the Amazon Web Services account that you want to customize Amazon QuickSight for.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID for the Amazon Web Services account that you want to customize Amazon QuickSight for.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The Amazon QuickSight namespace that you want to add customizations to.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The Amazon QuickSight namespace that you want to add customizations to.
sourcepub fn get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The Amazon QuickSight namespace that you want to add customizations to.
sourcepub fn account_customization(self, input: AccountCustomization) -> Self
pub fn account_customization(self, input: AccountCustomization) -> Self
The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. You can add these to an Amazon Web Services 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" }.
sourcepub fn set_account_customization(
self,
input: Option<AccountCustomization>
) -> Self
pub fn set_account_customization( self, input: Option<AccountCustomization> ) -> Self
The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. You can add these to an Amazon Web Services 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" }.
sourcepub fn get_account_customization(&self) -> &Option<AccountCustomization>
pub fn get_account_customization(&self) -> &Option<AccountCustomization>
The Amazon QuickSight customizations you're adding in the current Amazon Web Services Region. You can add these to an Amazon Web Services 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" }.
Appends an item to tags.
To override the contents of this collection use set_tags.
A list of the tags that you want to attach to this resource.
A list of the tags that you want to attach to this resource.
A list of the tags that you want to attach to this resource.
sourcepub fn build(self) -> Result<CreateAccountCustomizationInput, BuildError>
pub fn build(self) -> Result<CreateAccountCustomizationInput, BuildError>
Consumes the builder and constructs a CreateAccountCustomizationInput.
source§impl CreateAccountCustomizationInputBuilder
impl CreateAccountCustomizationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateAccountCustomizationOutput, SdkError<CreateAccountCustomizationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateAccountCustomizationOutput, SdkError<CreateAccountCustomizationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateAccountCustomizationInputBuilder
impl Clone for CreateAccountCustomizationInputBuilder
source§fn clone(&self) -> CreateAccountCustomizationInputBuilder
fn clone(&self) -> CreateAccountCustomizationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateAccountCustomizationInputBuilder
impl Default for CreateAccountCustomizationInputBuilder
source§fn default() -> CreateAccountCustomizationInputBuilder
fn default() -> CreateAccountCustomizationInputBuilder
source§impl PartialEq for CreateAccountCustomizationInputBuilder
impl PartialEq for CreateAccountCustomizationInputBuilder
source§fn eq(&self, other: &CreateAccountCustomizationInputBuilder) -> bool
fn eq(&self, other: &CreateAccountCustomizationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateAccountCustomizationInputBuilder
Auto Trait Implementations§
impl Freeze for CreateAccountCustomizationInputBuilder
impl RefUnwindSafe for CreateAccountCustomizationInputBuilder
impl Send for CreateAccountCustomizationInputBuilder
impl Sync for CreateAccountCustomizationInputBuilder
impl Unpin for CreateAccountCustomizationInputBuilder
impl UnwindSafe for CreateAccountCustomizationInputBuilder
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> 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