Struct aws_sdk_elasticbeanstalk::model::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
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
sourceimpl 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.
sourceimpl ResourceQuotas
impl ResourceQuotas
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResourceQuotas
Trait Implementations
sourceimpl Clone for ResourceQuotas
impl Clone for ResourceQuotas
sourcefn clone(&self) -> ResourceQuotas
fn clone(&self) -> ResourceQuotas
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ResourceQuotas
impl Debug for ResourceQuotas
sourceimpl PartialEq<ResourceQuotas> for ResourceQuotas
impl PartialEq<ResourceQuotas> for ResourceQuotas
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ResourceQuotas) -> bool
fn ne(&self, other: &ResourceQuotas) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more