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

impl Default for DBClusterCapacityInfo[src]

impl PartialEq<DBClusterCapacityInfo> for DBClusterCapacityInfo[src]

impl Debug for DBClusterCapacityInfo[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