Struct aws_sdk_quicksight::operation::update_spice_capacity_configuration::builders::UpdateSPICECapacityConfigurationFluentBuilder
source · pub struct UpdateSPICECapacityConfigurationFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateSPICECapacityConfiguration.
Updates the SPICE capacity configuration for a Amazon QuickSight account.
Implementations§
source§impl UpdateSPICECapacityConfigurationFluentBuilder
impl UpdateSPICECapacityConfigurationFluentBuilder
sourcepub fn as_input(&self) -> &UpdateSpiceCapacityConfigurationInputBuilder
pub fn as_input(&self) -> &UpdateSpiceCapacityConfigurationInputBuilder
Access the UpdateSPICECapacityConfiguration as a reference.
sourcepub async fn send(
self,
) -> Result<UpdateSpiceCapacityConfigurationOutput, SdkError<UpdateSPICECapacityConfigurationError, HttpResponse>>
pub async fn send( self, ) -> Result<UpdateSpiceCapacityConfigurationOutput, SdkError<UpdateSPICECapacityConfigurationError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<UpdateSpiceCapacityConfigurationOutput, UpdateSPICECapacityConfigurationError, Self>
pub fn customize( self, ) -> CustomizableOperation<UpdateSpiceCapacityConfigurationOutput, UpdateSPICECapacityConfigurationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
sourcepub fn purchase_mode(self, input: PurchaseMode) -> Self
pub fn purchase_mode(self, input: PurchaseMode) -> Self
Determines how SPICE capacity can be purchased. The following options are available.
-
MANUAL: SPICE capacity can only be purchased manually. -
AUTO_PURCHASE: Extra SPICE capacity is automatically purchased on your behalf as needed. SPICE capacity can also be purchased manually with this option.
sourcepub fn set_purchase_mode(self, input: Option<PurchaseMode>) -> Self
pub fn set_purchase_mode(self, input: Option<PurchaseMode>) -> Self
Determines how SPICE capacity can be purchased. The following options are available.
-
MANUAL: SPICE capacity can only be purchased manually. -
AUTO_PURCHASE: Extra SPICE capacity is automatically purchased on your behalf as needed. SPICE capacity can also be purchased manually with this option.
sourcepub fn get_purchase_mode(&self) -> &Option<PurchaseMode>
pub fn get_purchase_mode(&self) -> &Option<PurchaseMode>
Determines how SPICE capacity can be purchased. The following options are available.
-
MANUAL: SPICE capacity can only be purchased manually. -
AUTO_PURCHASE: Extra SPICE capacity is automatically purchased on your behalf as needed. SPICE capacity can also be purchased manually with this option.
Trait Implementations§
source§impl Clone for UpdateSPICECapacityConfigurationFluentBuilder
impl Clone for UpdateSPICECapacityConfigurationFluentBuilder
source§fn clone(&self) -> UpdateSPICECapacityConfigurationFluentBuilder
fn clone(&self) -> UpdateSPICECapacityConfigurationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateSPICECapacityConfigurationFluentBuilder
impl !RefUnwindSafe for UpdateSPICECapacityConfigurationFluentBuilder
impl Send for UpdateSPICECapacityConfigurationFluentBuilder
impl Sync for UpdateSPICECapacityConfigurationFluentBuilder
impl Unpin for UpdateSPICECapacityConfigurationFluentBuilder
impl !UnwindSafe for UpdateSPICECapacityConfigurationFluentBuilder
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