Struct rusoto_dms::AccountQuota[][src]

pub struct AccountQuota {
    pub account_quota_name: Option<String>,
    pub max: Option<i64>,
    pub used: Option<i64>,
}

Describes a quota for an AWS account, for example, the number of replication instances allowed.

Fields

The name of the AWS DMS quota for this AWS account.

The maximum allowed value for the quota.

The amount currently used toward the quota maximum.

Trait Implementations

impl Default for AccountQuota
[src]

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

impl Debug for AccountQuota
[src]

Formats the value using the given formatter. Read more

impl Clone for AccountQuota
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AccountQuota
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations