Struct aws_sdk_quicksight::operation::update_account_customization::builders::UpdateAccountCustomizationInputBuilder
source · #[non_exhaustive]pub struct UpdateAccountCustomizationInputBuilder { /* private fields */ }Expand description
A builder for UpdateAccountCustomizationInput.
Implementations§
source§impl UpdateAccountCustomizationInputBuilder
impl UpdateAccountCustomizationInputBuilder
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 update Amazon QuickSight customizations 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 update Amazon QuickSight customizations 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 update Amazon QuickSight customizations for.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace that you want to update Amazon QuickSight customizations for.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace that you want to update Amazon QuickSight customizations for.
sourcepub fn get_namespace(&self) -> &Option<String>
pub fn get_namespace(&self) -> &Option<String>
The namespace that you want to update Amazon QuickSight customizations for.
sourcepub fn account_customization(self, input: AccountCustomization) -> Self
pub fn account_customization(self, input: AccountCustomization) -> Self
The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region.
This field is required.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 updating in the current Amazon Web Services Region.
sourcepub fn get_account_customization(&self) -> &Option<AccountCustomization>
pub fn get_account_customization(&self) -> &Option<AccountCustomization>
The Amazon QuickSight customizations you're updating in the current Amazon Web Services Region.
sourcepub fn build(self) -> Result<UpdateAccountCustomizationInput, BuildError>
pub fn build(self) -> Result<UpdateAccountCustomizationInput, BuildError>
Consumes the builder and constructs a UpdateAccountCustomizationInput.
source§impl UpdateAccountCustomizationInputBuilder
impl UpdateAccountCustomizationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateAccountCustomizationOutput, SdkError<UpdateAccountCustomizationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateAccountCustomizationOutput, SdkError<UpdateAccountCustomizationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateAccountCustomizationInputBuilder
impl Clone for UpdateAccountCustomizationInputBuilder
source§fn clone(&self) -> UpdateAccountCustomizationInputBuilder
fn clone(&self) -> UpdateAccountCustomizationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateAccountCustomizationInputBuilder
impl Default for UpdateAccountCustomizationInputBuilder
source§fn default() -> UpdateAccountCustomizationInputBuilder
fn default() -> UpdateAccountCustomizationInputBuilder
source§impl PartialEq for UpdateAccountCustomizationInputBuilder
impl PartialEq for UpdateAccountCustomizationInputBuilder
source§fn eq(&self, other: &UpdateAccountCustomizationInputBuilder) -> bool
fn eq(&self, other: &UpdateAccountCustomizationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateAccountCustomizationInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateAccountCustomizationInputBuilder
impl RefUnwindSafe for UpdateAccountCustomizationInputBuilder
impl Send for UpdateAccountCustomizationInputBuilder
impl Sync for UpdateAccountCustomizationInputBuilder
impl Unpin for UpdateAccountCustomizationInputBuilder
impl UnwindSafe for UpdateAccountCustomizationInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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