Struct rusoto_elasticbeanstalk::ResourceQuota[][src]

pub struct ResourceQuota {
    pub maximum: Option<i64>,
}

The AWS Elastic Beanstalk quota information for a single resource type in an AWS account. It reflects the resource's limits for this account.

Fields

The maximum number of instances of this Elastic Beanstalk resource type that an AWS account can use.

Trait Implementations

impl Default for ResourceQuota
[src]

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

impl Debug for ResourceQuota
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceQuota
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceQuota
[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