[][src]Struct rusoto_rds::ScalingConfiguration

pub struct ScalingConfiguration {
    pub auto_pause: Option<bool>,
    pub max_capacity: Option<i64>,
    pub min_capacity: Option<i64>,
    pub seconds_until_auto_pause: Option<i64>,
    pub timeout_action: Option<String>,
}

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 Clone for ScalingConfiguration[src]

impl Default for ScalingConfiguration[src]

impl PartialEq<ScalingConfiguration> for ScalingConfiguration[src]

impl Debug for ScalingConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self