Struct aws_sdk_elasticbeanstalk::types::ResourceQuotas
source · #[non_exhaustive]pub struct ResourceQuotas {
pub application_quota: Option<ResourceQuota>,
pub application_version_quota: Option<ResourceQuota>,
pub environment_quota: Option<ResourceQuota>,
pub configuration_template_quota: Option<ResourceQuota>,
pub custom_platform_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 (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
environment_quota: Option<ResourceQuota>
The quota for environments 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.
Implementations§
source§impl ResourceQuotas
impl ResourceQuotas
sourcepub fn application_quota(&self) -> Option<&ResourceQuota>
pub fn application_quota(&self) -> Option<&ResourceQuota>
The quota for applications in the AWS account.
sourcepub fn application_version_quota(&self) -> Option<&ResourceQuota>
pub fn application_version_quota(&self) -> Option<&ResourceQuota>
The quota for application versions in the AWS account.
sourcepub fn environment_quota(&self) -> Option<&ResourceQuota>
pub fn environment_quota(&self) -> Option<&ResourceQuota>
The quota for environments in the AWS account.
sourcepub fn configuration_template_quota(&self) -> Option<&ResourceQuota>
pub fn configuration_template_quota(&self) -> Option<&ResourceQuota>
The quota for configuration templates in the AWS account.
sourcepub fn custom_platform_quota(&self) -> Option<&ResourceQuota>
pub fn custom_platform_quota(&self) -> Option<&ResourceQuota>
The quota for custom platforms in the AWS account.
source§impl ResourceQuotas
impl ResourceQuotas
sourcepub fn builder() -> ResourceQuotasBuilder
pub fn builder() -> ResourceQuotasBuilder
Creates a new builder-style object to manufacture ResourceQuotas
.
Trait Implementations§
source§impl Clone for ResourceQuotas
impl Clone for ResourceQuotas
source§fn clone(&self) -> ResourceQuotas
fn clone(&self) -> ResourceQuotas
Returns a copy 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 PartialEq<ResourceQuotas> for ResourceQuotas
impl PartialEq<ResourceQuotas> for ResourceQuotas
source§fn eq(&self, other: &ResourceQuotas) -> bool
fn eq(&self, other: &ResourceQuotas) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourceQuotas
Auto Trait Implementations§
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