Struct aws_sdk_lambda::types::builders::AccountUsageBuilder
source · #[non_exhaustive]pub struct AccountUsageBuilder { /* private fields */ }
Expand description
A builder for AccountUsage
.
Implementations§
source§impl AccountUsageBuilder
impl AccountUsageBuilder
sourcepub fn total_code_size(self, input: i64) -> Self
pub fn total_code_size(self, input: i64) -> Self
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
sourcepub fn set_total_code_size(self, input: Option<i64>) -> Self
pub fn set_total_code_size(self, input: Option<i64>) -> Self
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
sourcepub fn function_count(self, input: i64) -> Self
pub fn function_count(self, input: i64) -> Self
The number of Lambda functions.
sourcepub fn set_function_count(self, input: Option<i64>) -> Self
pub fn set_function_count(self, input: Option<i64>) -> Self
The number of Lambda functions.
sourcepub fn build(self) -> AccountUsage
pub fn build(self) -> AccountUsage
Consumes the builder and constructs a AccountUsage
.
Trait Implementations§
source§impl Clone for AccountUsageBuilder
impl Clone for AccountUsageBuilder
source§fn clone(&self) -> AccountUsageBuilder
fn clone(&self) -> AccountUsageBuilder
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 AccountUsageBuilder
impl Debug for AccountUsageBuilder
source§impl Default for AccountUsageBuilder
impl Default for AccountUsageBuilder
source§fn default() -> AccountUsageBuilder
fn default() -> AccountUsageBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AccountUsageBuilder> for AccountUsageBuilder
impl PartialEq<AccountUsageBuilder> for AccountUsageBuilder
source§fn eq(&self, other: &AccountUsageBuilder) -> bool
fn eq(&self, other: &AccountUsageBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.