pub struct ModifyCurrentDBClusterCapacityMessage {
pub capacity: Option<i64>,
pub db_cluster_identifier: String,
pub seconds_before_timeout: Option<i64>,
pub timeout_action: Option<String>,
}
Fields§
§capacity: Option<i64>
The DB cluster capacity.
When you change the capacity of a paused Aurora Serverless DB cluster, it automatically resumes.
Constraints:
-
For Aurora MySQL, valid capacity values are
1
,2
,4
,8
,16
,32
,64
,128
, and256
. -
For Aurora PostgreSQL, valid capacity values are
2
,4
,8
,16
,32
,64
,192
, and384
.
db_cluster_identifier: String
The DB cluster identifier for the cluster being modified. This parameter isn't case-sensitive.
Constraints:
-
Must match the identifier of an existing DB cluster.
seconds_before_timeout: Option<i64>
The amount of time, in seconds, that Aurora Serverless tries to find a scaling point to perform seamless scaling before enforcing the timeout action. The default is 300.
-
Value must be from 10 through 600.
timeout_action: Option<String>
The action to take when the timeout is reached, either ForceApplyCapacityChange
or RollbackCapacityChange
.
ForceApplyCapacityChange
, the default, sets the capacity to the specified value as soon as possible.
RollbackCapacityChange
ignores the capacity change if a scaling point isn't found in the timeout period.
Trait Implementations§
Source§impl Clone for ModifyCurrentDBClusterCapacityMessage
impl Clone for ModifyCurrentDBClusterCapacityMessage
Source§fn clone(&self) -> ModifyCurrentDBClusterCapacityMessage
fn clone(&self) -> ModifyCurrentDBClusterCapacityMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for ModifyCurrentDBClusterCapacityMessage
impl Default for ModifyCurrentDBClusterCapacityMessage
Source§fn default() -> ModifyCurrentDBClusterCapacityMessage
fn default() -> ModifyCurrentDBClusterCapacityMessage
Source§impl PartialEq for ModifyCurrentDBClusterCapacityMessage
impl PartialEq for ModifyCurrentDBClusterCapacityMessage
Source§fn eq(&self, other: &ModifyCurrentDBClusterCapacityMessage) -> bool
fn eq(&self, other: &ModifyCurrentDBClusterCapacityMessage) -> bool
self
and other
values to be equal, and is used by ==
.