Struct aws_sdk_rds::operation::modify_current_db_cluster_capacity::ModifyCurrentDbClusterCapacityOutput
source · #[non_exhaustive]pub struct ModifyCurrentDbClusterCapacityOutput {
pub db_cluster_identifier: Option<String>,
pub pending_capacity: Option<i32>,
pub current_capacity: Option<i32>,
pub seconds_before_timeout: Option<i32>,
pub timeout_action: Option<String>,
/* private fields */
}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.db_cluster_identifier: Option<String>A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
pending_capacity: Option<i32>A value that specifies the capacity that the DB cluster scales to next.
current_capacity: Option<i32>The current capacity of the DB cluster.
seconds_before_timeout: Option<i32>The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.
timeout_action: Option<String>The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.
Implementations§
source§impl 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.
source§impl ModifyCurrentDbClusterCapacityOutput
impl ModifyCurrentDbClusterCapacityOutput
sourcepub fn builder() -> ModifyCurrentDbClusterCapacityOutputBuilder
pub fn builder() -> ModifyCurrentDbClusterCapacityOutputBuilder
Creates a new builder-style object to manufacture ModifyCurrentDbClusterCapacityOutput.
Trait Implementations§
source§impl Clone for ModifyCurrentDbClusterCapacityOutput
impl Clone for ModifyCurrentDbClusterCapacityOutput
source§fn clone(&self) -> ModifyCurrentDbClusterCapacityOutput
fn clone(&self) -> ModifyCurrentDbClusterCapacityOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ModifyCurrentDbClusterCapacityOutput
impl PartialEq for ModifyCurrentDbClusterCapacityOutput
source§fn eq(&self, other: &ModifyCurrentDbClusterCapacityOutput) -> bool
fn eq(&self, other: &ModifyCurrentDbClusterCapacityOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for ModifyCurrentDbClusterCapacityOutput
impl RequestId for ModifyCurrentDbClusterCapacityOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ModifyCurrentDbClusterCapacityOutput
Auto Trait Implementations§
impl Freeze for ModifyCurrentDbClusterCapacityOutput
impl RefUnwindSafe for ModifyCurrentDbClusterCapacityOutput
impl Send for ModifyCurrentDbClusterCapacityOutput
impl Sync for ModifyCurrentDbClusterCapacityOutput
impl Unpin for ModifyCurrentDbClusterCapacityOutput
impl UnwindSafe for ModifyCurrentDbClusterCapacityOutput
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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