Struct rusoto_opsworkscm::AccountAttribute [] [src]

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

Stores account attributes.

Fields

The maximum allowed value.

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.

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

Trait Implementations

impl Default for AccountAttribute
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for AccountAttribute
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AccountAttribute
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations