#[non_exhaustive]pub struct ModifyCurrentDbClusterCapacityOutput { /* private fields */ }Implementations
sourceimpl ModifyCurrentDbClusterCapacityOutput
impl ModifyCurrentDbClusterCapacityOutput
sourcepub fn db_cluster_identifier(&self) -> Option<&str>
pub fn db_cluster_identifier(&self) -> Option<&str>
A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
sourcepub fn pending_capacity(&self) -> Option<i32>
pub fn pending_capacity(&self) -> Option<i32>
A value that specifies the capacity that the DB cluster scales to next.
sourcepub fn current_capacity(&self) -> Option<i32>
pub fn current_capacity(&self) -> Option<i32>
The current capacity of the DB cluster.
sourcepub fn seconds_before_timeout(&self) -> Option<i32>
pub fn seconds_before_timeout(&self) -> Option<i32>
The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.
sourcepub fn timeout_action(&self) -> Option<&str>
pub fn timeout_action(&self) -> Option<&str>
The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.
sourceimpl ModifyCurrentDbClusterCapacityOutput
impl ModifyCurrentDbClusterCapacityOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyCurrentDbClusterCapacityOutput.
Trait Implementations
sourceimpl Clone for ModifyCurrentDbClusterCapacityOutput
impl Clone for ModifyCurrentDbClusterCapacityOutput
sourcefn clone(&self) -> ModifyCurrentDbClusterCapacityOutput
fn clone(&self) -> ModifyCurrentDbClusterCapacityOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl PartialEq<ModifyCurrentDbClusterCapacityOutput> for ModifyCurrentDbClusterCapacityOutput
impl PartialEq<ModifyCurrentDbClusterCapacityOutput> for ModifyCurrentDbClusterCapacityOutput
sourcefn eq(&self, other: &ModifyCurrentDbClusterCapacityOutput) -> bool
fn eq(&self, other: &ModifyCurrentDbClusterCapacityOutput) -> bool
impl StructuralPartialEq for ModifyCurrentDbClusterCapacityOutput
Auto Trait Implementations
impl RefUnwindSafe for ModifyCurrentDbClusterCapacityOutput
impl Send for ModifyCurrentDbClusterCapacityOutput
impl Sync for ModifyCurrentDbClusterCapacityOutput
impl Unpin for ModifyCurrentDbClusterCapacityOutput
impl UnwindSafe for ModifyCurrentDbClusterCapacityOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more