Struct rusoto_elasticbeanstalk::ResourceQuotas[][src]

pub struct ResourceQuotas {
    pub application_quota: Option<ResourceQuota>,
    pub application_version_quota: Option<ResourceQuota>,
    pub configuration_template_quota: Option<ResourceQuota>,
    pub custom_platform_quota: Option<ResourceQuota>,
    pub environment_quota: Option<ResourceQuota>,
}

A set of per-resource AWS Elastic Beanstalk quotas associated with an AWS account. They reflect Elastic Beanstalk resource limits for this account.

Fields

The quota for applications in the AWS account.

The quota for application versions in the AWS account.

The quota for configuration templates in the AWS account.

The quota for custom platforms in the AWS account.

The quota for environments in the AWS account.

Trait Implementations

impl Default for ResourceQuotas
[src]

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

impl Debug for ResourceQuotas
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceQuotas
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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