Struct aws_sdk_rds::operation::modify_current_db_cluster_capacity::builders::ModifyCurrentDbClusterCapacityOutputBuilder
source · #[non_exhaustive]pub struct ModifyCurrentDbClusterCapacityOutputBuilder { /* private fields */ }Expand description
A builder for ModifyCurrentDbClusterCapacityOutput.
Implementations§
source§impl ModifyCurrentDbClusterCapacityOutputBuilder
impl ModifyCurrentDbClusterCapacityOutputBuilder
sourcepub fn db_cluster_identifier(self, input: impl Into<String>) -> Self
pub fn db_cluster_identifier(self, input: impl Into<String>) -> Self
A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
sourcepub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
sourcepub fn get_db_cluster_identifier(&self) -> &Option<String>
pub fn get_db_cluster_identifier(&self) -> &Option<String>
A user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
sourcepub fn pending_capacity(self, input: i32) -> Self
pub fn pending_capacity(self, input: i32) -> Self
A value that specifies the capacity that the DB cluster scales to next.
sourcepub fn set_pending_capacity(self, input: Option<i32>) -> Self
pub fn set_pending_capacity(self, input: Option<i32>) -> Self
A value that specifies the capacity that the DB cluster scales to next.
sourcepub fn get_pending_capacity(&self) -> &Option<i32>
pub fn get_pending_capacity(&self) -> &Option<i32>
A value that specifies the capacity that the DB cluster scales to next.
sourcepub fn current_capacity(self, input: i32) -> Self
pub fn current_capacity(self, input: i32) -> Self
The current capacity of the DB cluster.
sourcepub fn set_current_capacity(self, input: Option<i32>) -> Self
pub fn set_current_capacity(self, input: Option<i32>) -> Self
The current capacity of the DB cluster.
sourcepub fn get_current_capacity(&self) -> &Option<i32>
pub fn get_current_capacity(&self) -> &Option<i32>
The current capacity of the DB cluster.
sourcepub fn seconds_before_timeout(self, input: i32) -> Self
pub fn seconds_before_timeout(self, input: i32) -> Self
The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.
sourcepub fn set_seconds_before_timeout(self, input: Option<i32>) -> Self
pub fn set_seconds_before_timeout(self, input: Option<i32>) -> Self
The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.
sourcepub fn get_seconds_before_timeout(&self) -> &Option<i32>
pub fn get_seconds_before_timeout(&self) -> &Option<i32>
The number of seconds before a call to ModifyCurrentDBClusterCapacity times out.
sourcepub fn timeout_action(self, input: impl Into<String>) -> Self
pub fn timeout_action(self, input: impl Into<String>) -> Self
The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.
sourcepub fn set_timeout_action(self, input: Option<String>) -> Self
pub fn set_timeout_action(self, input: Option<String>) -> Self
The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.
sourcepub fn get_timeout_action(&self) -> &Option<String>
pub fn get_timeout_action(&self) -> &Option<String>
The timeout action of a call to ModifyCurrentDBClusterCapacity, either ForceApplyCapacityChange or RollbackCapacityChange.
sourcepub fn build(self) -> ModifyCurrentDbClusterCapacityOutput
pub fn build(self) -> ModifyCurrentDbClusterCapacityOutput
Consumes the builder and constructs a ModifyCurrentDbClusterCapacityOutput.
Trait Implementations§
source§impl Clone for ModifyCurrentDbClusterCapacityOutputBuilder
impl Clone for ModifyCurrentDbClusterCapacityOutputBuilder
source§fn clone(&self) -> ModifyCurrentDbClusterCapacityOutputBuilder
fn clone(&self) -> ModifyCurrentDbClusterCapacityOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ModifyCurrentDbClusterCapacityOutputBuilder
impl Default for ModifyCurrentDbClusterCapacityOutputBuilder
source§fn default() -> ModifyCurrentDbClusterCapacityOutputBuilder
fn default() -> ModifyCurrentDbClusterCapacityOutputBuilder
source§impl PartialEq for ModifyCurrentDbClusterCapacityOutputBuilder
impl PartialEq for ModifyCurrentDbClusterCapacityOutputBuilder
source§fn eq(&self, other: &ModifyCurrentDbClusterCapacityOutputBuilder) -> bool
fn eq(&self, other: &ModifyCurrentDbClusterCapacityOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyCurrentDbClusterCapacityOutputBuilder
Auto Trait Implementations§
impl Freeze for ModifyCurrentDbClusterCapacityOutputBuilder
impl RefUnwindSafe for ModifyCurrentDbClusterCapacityOutputBuilder
impl Send for ModifyCurrentDbClusterCapacityOutputBuilder
impl Sync for ModifyCurrentDbClusterCapacityOutputBuilder
impl Unpin for ModifyCurrentDbClusterCapacityOutputBuilder
impl UnwindSafe for ModifyCurrentDbClusterCapacityOutputBuilder
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