[][src]Struct rusoto_rds::DBClusterCapacityInfo

pub struct DBClusterCapacityInfo {
    pub current_capacity: Option<i64>,
    pub db_cluster_identifier: Option<String>,
    pub pending_capacity: Option<i64>,
    pub seconds_before_timeout: Option<i64>,
    pub timeout_action: Option<String>,
}

Fields

current_capacity: Option<i64>
[]

The current capacity of the DB cluster.

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<i64>
[]

A value that specifies the capacity that the DB cluster scales to next.

seconds_before_timeout: Option<i64>
[]

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.

Trait Implementations

impl PartialEq<DBClusterCapacityInfo> for DBClusterCapacityInfo[src][+]

impl Default for DBClusterCapacityInfo[src][+]

impl Clone for DBClusterCapacityInfo[src][+]

fn clone_from(&mut self, source: &Self)
1.0.0
[src][]

Performs copy-assignment from source. Read more

impl Debug for DBClusterCapacityInfo[src][+]

Auto Trait Implementations

impl Send for DBClusterCapacityInfo

impl Sync for DBClusterCapacityInfo

Blanket Implementations

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

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self