Struct aws_sdk_quicksight::operation::update_account_customization::UpdateAccountCustomizationInput
source · #[non_exhaustive]pub struct UpdateAccountCustomizationInput {
pub aws_account_id: Option<String>,
pub namespace: Option<String>,
pub account_customization: Option<AccountCustomization>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID for the Amazon Web Services account that you want to update Amazon QuickSight customizations for.
namespace: Option<String>The namespace that you want to update Amazon QuickSight customizations for.
account_customization: Option<AccountCustomization>The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region.
Implementations§
source§impl UpdateAccountCustomizationInput
impl UpdateAccountCustomizationInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID for the Amazon Web Services account that you want to update Amazon QuickSight customizations for.
sourcepub fn namespace(&self) -> Option<&str>
pub fn namespace(&self) -> Option<&str>
The namespace that you want to update Amazon QuickSight customizations for.
sourcepub fn account_customization(&self) -> Option<&AccountCustomization>
pub fn account_customization(&self) -> Option<&AccountCustomization>
The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region.
source§impl UpdateAccountCustomizationInput
impl UpdateAccountCustomizationInput
sourcepub fn builder() -> UpdateAccountCustomizationInputBuilder
pub fn builder() -> UpdateAccountCustomizationInputBuilder
Creates a new builder-style object to manufacture UpdateAccountCustomizationInput.
Trait Implementations§
source§impl Clone for UpdateAccountCustomizationInput
impl Clone for UpdateAccountCustomizationInput
source§fn clone(&self) -> UpdateAccountCustomizationInput
fn clone(&self) -> UpdateAccountCustomizationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<UpdateAccountCustomizationInput> for UpdateAccountCustomizationInput
impl PartialEq<UpdateAccountCustomizationInput> for UpdateAccountCustomizationInput
source§fn eq(&self, other: &UpdateAccountCustomizationInput) -> bool
fn eq(&self, other: &UpdateAccountCustomizationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAccountCustomizationInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateAccountCustomizationInput
impl Send for UpdateAccountCustomizationInput
impl Sync for UpdateAccountCustomizationInput
impl Unpin for UpdateAccountCustomizationInput
impl UnwindSafe for UpdateAccountCustomizationInput
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
Mutably borrows from an owned value. Read more