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>,
}
Expand description
A set of per-resource AWS Elastic Beanstalk quotas associated with an AWS account. They reflect Elastic Beanstalk resource limits for this account.
Fields§
§application_quota: Option<ResourceQuota>
The quota for applications in the AWS account.
application_version_quota: Option<ResourceQuota>
The quota for application versions in the AWS account.
configuration_template_quota: Option<ResourceQuota>
The quota for configuration templates in the AWS account.
custom_platform_quota: Option<ResourceQuota>
The quota for custom platforms in the AWS account.
environment_quota: Option<ResourceQuota>
The quota for environments in the AWS account.
Trait Implementations§
Source§impl Clone for ResourceQuotas
impl Clone for ResourceQuotas
Source§fn clone(&self) -> ResourceQuotas
fn clone(&self) -> ResourceQuotas
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResourceQuotas
impl Debug for ResourceQuotas
Source§impl Default for ResourceQuotas
impl Default for ResourceQuotas
Source§fn default() -> ResourceQuotas
fn default() -> ResourceQuotas
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResourceQuotas
impl PartialEq for ResourceQuotas
impl StructuralPartialEq for ResourceQuotas
Auto Trait Implementations§
impl Freeze for ResourceQuotas
impl RefUnwindSafe for ResourceQuotas
impl Send for ResourceQuotas
impl Sync for ResourceQuotas
impl Unpin for ResourceQuotas
impl UnwindSafe for ResourceQuotas
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more