Struct aws_sdk_quicksight::operation::update_spice_capacity_configuration::UpdateSpiceCapacityConfigurationInput
source · #[non_exhaustive]pub struct UpdateSpiceCapacityConfigurationInput {
pub aws_account_id: Option<String>,
pub purchase_mode: Option<PurchaseMode>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
purchase_mode: 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.
Implementations§
source§impl UpdateSpiceCapacityConfigurationInput
impl UpdateSpiceCapacityConfigurationInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
sourcepub fn purchase_mode(&self) -> Option<&PurchaseMode>
pub fn 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.
source§impl UpdateSpiceCapacityConfigurationInput
impl UpdateSpiceCapacityConfigurationInput
sourcepub fn builder() -> UpdateSpiceCapacityConfigurationInputBuilder
pub fn builder() -> UpdateSpiceCapacityConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateSpiceCapacityConfigurationInput.
Trait Implementations§
source§impl Clone for UpdateSpiceCapacityConfigurationInput
impl Clone for UpdateSpiceCapacityConfigurationInput
source§fn clone(&self) -> UpdateSpiceCapacityConfigurationInput
fn clone(&self) -> UpdateSpiceCapacityConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateSpiceCapacityConfigurationInput
impl PartialEq for UpdateSpiceCapacityConfigurationInput
source§fn eq(&self, other: &UpdateSpiceCapacityConfigurationInput) -> bool
fn eq(&self, other: &UpdateSpiceCapacityConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSpiceCapacityConfigurationInput
Auto Trait Implementations§
impl Freeze for UpdateSpiceCapacityConfigurationInput
impl RefUnwindSafe for UpdateSpiceCapacityConfigurationInput
impl Send for UpdateSpiceCapacityConfigurationInput
impl Sync for UpdateSpiceCapacityConfigurationInput
impl Unpin for UpdateSpiceCapacityConfigurationInput
impl UnwindSafe for UpdateSpiceCapacityConfigurationInput
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