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 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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.