#[non_exhaustive]pub struct ResourceQuotasBuilder { /* private fields */ }
Expand description
A builder for ResourceQuotas
.
Implementations§
source§impl ResourceQuotasBuilder
impl ResourceQuotasBuilder
sourcepub fn application_quota(self, input: ResourceQuota) -> Self
pub fn application_quota(self, input: ResourceQuota) -> Self
The quota for applications in the AWS account.
sourcepub fn set_application_quota(self, input: Option<ResourceQuota>) -> Self
pub fn set_application_quota(self, input: Option<ResourceQuota>) -> Self
The quota for applications in the AWS account.
sourcepub fn get_application_quota(&self) -> &Option<ResourceQuota>
pub fn get_application_quota(&self) -> &Option<ResourceQuota>
The quota for applications in the AWS account.
sourcepub fn application_version_quota(self, input: ResourceQuota) -> Self
pub fn application_version_quota(self, input: ResourceQuota) -> Self
The quota for application versions in the AWS account.
sourcepub fn set_application_version_quota(self, input: Option<ResourceQuota>) -> Self
pub fn set_application_version_quota(self, input: Option<ResourceQuota>) -> Self
The quota for application versions in the AWS account.
sourcepub fn get_application_version_quota(&self) -> &Option<ResourceQuota>
pub fn get_application_version_quota(&self) -> &Option<ResourceQuota>
The quota for application versions in the AWS account.
sourcepub fn environment_quota(self, input: ResourceQuota) -> Self
pub fn environment_quota(self, input: ResourceQuota) -> Self
The quota for environments in the AWS account.
sourcepub fn set_environment_quota(self, input: Option<ResourceQuota>) -> Self
pub fn set_environment_quota(self, input: Option<ResourceQuota>) -> Self
The quota for environments in the AWS account.
sourcepub fn get_environment_quota(&self) -> &Option<ResourceQuota>
pub fn get_environment_quota(&self) -> &Option<ResourceQuota>
The quota for environments in the AWS account.
sourcepub fn configuration_template_quota(self, input: ResourceQuota) -> Self
pub fn configuration_template_quota(self, input: ResourceQuota) -> Self
The quota for configuration templates in the AWS account.
sourcepub fn set_configuration_template_quota(
self,
input: Option<ResourceQuota>
) -> Self
pub fn set_configuration_template_quota( self, input: Option<ResourceQuota> ) -> Self
The quota for configuration templates in the AWS account.
sourcepub fn get_configuration_template_quota(&self) -> &Option<ResourceQuota>
pub fn get_configuration_template_quota(&self) -> &Option<ResourceQuota>
The quota for configuration templates in the AWS account.
sourcepub fn custom_platform_quota(self, input: ResourceQuota) -> Self
pub fn custom_platform_quota(self, input: ResourceQuota) -> Self
The quota for custom platforms in the AWS account.
sourcepub fn set_custom_platform_quota(self, input: Option<ResourceQuota>) -> Self
pub fn set_custom_platform_quota(self, input: Option<ResourceQuota>) -> Self
The quota for custom platforms in the AWS account.
sourcepub fn get_custom_platform_quota(&self) -> &Option<ResourceQuota>
pub fn get_custom_platform_quota(&self) -> &Option<ResourceQuota>
The quota for custom platforms in the AWS account.
sourcepub fn build(self) -> ResourceQuotas
pub fn build(self) -> ResourceQuotas
Consumes the builder and constructs a ResourceQuotas
.
Trait Implementations§
source§impl Clone for ResourceQuotasBuilder
impl Clone for ResourceQuotasBuilder
source§fn clone(&self) -> ResourceQuotasBuilder
fn clone(&self) -> ResourceQuotasBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResourceQuotasBuilder
impl Debug for ResourceQuotasBuilder
source§impl Default for ResourceQuotasBuilder
impl Default for ResourceQuotasBuilder
source§fn default() -> ResourceQuotasBuilder
fn default() -> ResourceQuotasBuilder
source§impl PartialEq for ResourceQuotasBuilder
impl PartialEq for ResourceQuotasBuilder
source§fn eq(&self, other: &ResourceQuotasBuilder) -> bool
fn eq(&self, other: &ResourceQuotasBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourceQuotasBuilder
Auto Trait Implementations§
impl Freeze for ResourceQuotasBuilder
impl RefUnwindSafe for ResourceQuotasBuilder
impl Send for ResourceQuotasBuilder
impl Sync for ResourceQuotasBuilder
impl Unpin for ResourceQuotasBuilder
impl UnwindSafe for ResourceQuotasBuilder
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
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>
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>
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 more