[−][src]Struct rusoto_rds::ScalingConfiguration
Contains the scaling configuration of an Aurora Serverless DB cluster.
For more information, see Using Amazon Aurora Serverless in the Amazon Aurora User Guide.
Fields
auto_pause: Option<bool>
A value that indicates whether to allow or disallow automatic pause for an Aurora DB cluster in serverless
DB engine mode. A DB cluster can be paused only when it's idle (it has no connections).
If a DB cluster is paused for more than seven days, the DB cluster might be backed up with a snapshot. In this case, the DB cluster is restored when there is a request to connect to it.
max_capacity: Option<i64>
The maximum capacity for an Aurora DB cluster in serverless
DB engine mode.
Valid capacity values are 1
, 2
, 4
, 8
, 16
, 32
, 64
, 128
, and 256
.
The maximum capacity must be greater than or equal to the minimum capacity.
min_capacity: Option<i64>
The minimum capacity for an Aurora DB cluster in serverless
DB engine mode.
Valid capacity values are 1
, 2
, 4
, 8
, 16
, 32
, 64
, 128
, and 256
.
The minimum capacity must be less than or equal to the maximum capacity.
seconds_until_auto_pause: Option<i64>
The time, in seconds, before an Aurora DB cluster in serverless
mode is paused.
timeout_action: Option<String>
The action to take when the timeout is reached, either ForceApplyCapacityChange
or RollbackCapacityChange
.
ForceApplyCapacityChange
sets the capacity to the specified value as soon as possible.
RollbackCapacityChange
, the default, ignores the capacity change if a scaling point is not found in the timeout period.
If you specify ForceApplyCapacityChange
, connections that prevent Aurora Serverless from finding a scaling point might be dropped.
For more information, see Autoscaling for Aurora Serverless in the Amazon Aurora User Guide.
Trait Implementations
impl PartialEq<ScalingConfiguration> for ScalingConfiguration
[src]
fn eq(&self, other: &ScalingConfiguration) -> bool
[src]
fn ne(&self, other: &ScalingConfiguration) -> bool
[src]
impl Default for ScalingConfiguration
[src]
fn default() -> ScalingConfiguration
[src]
impl Clone for ScalingConfiguration
[src]
fn clone(&self) -> ScalingConfiguration
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ScalingConfiguration
[src]
Auto Trait Implementations
impl Send for ScalingConfiguration
impl Sync for ScalingConfiguration
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self