[][src]Struct rusoto_opsworkscm::AccountAttribute

pub struct AccountAttribute {
    pub maximum: Option<i64>,
    pub name: Option<String>,
    pub used: Option<i64>,
}

Stores account attributes.

Fields

maximum: Option<i64>

The maximum allowed value.

name: Option<String>

The attribute name. The following are supported attribute names.

  • ServerLimit: The number of current servers/maximum number of servers allowed. By default, you can have a maximum of 10 servers.

  • ManualBackupLimit: The number of current manual backups/maximum number of backups allowed. By default, you can have a maximum of 50 manual backups saved.

used: Option<i64>

The current usage, such as the current number of servers that are associated with the account.

Trait Implementations

impl Clone for AccountAttribute[src]

impl Debug for AccountAttribute[src]

impl Default for AccountAttribute[src]

impl<'de> Deserialize<'de> for AccountAttribute[src]

impl PartialEq<AccountAttribute> for AccountAttribute[src]

impl StructuralPartialEq for AccountAttribute[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.