[−][src]Struct rusoto_lambda::AccountLimit
Limits that are related to concurrency and code storage. All file and storage sizes are in bytes.
Fields
code_size_unzipped: Option<i64>
The maximum size of your function's code and layers when they're extracted.
code_size_zipped: Option<i64>
The maximum size of a deployment package when it's uploaded directly to AWS Lambda. Use Amazon S3 for larger files.
concurrent_executions: Option<i64>
The maximum number of simultaneous function executions.
total_code_size: Option<i64>
The amount of storage space that you can use for all deployment packages and layer archives.
unreserved_concurrent_executions: Option<i64>
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
Trait Implementations
impl PartialEq<AccountLimit> for AccountLimit
[src]
fn eq(&self, other: &AccountLimit) -> bool
[src]
fn ne(&self, other: &AccountLimit) -> bool
[src]
impl Default for AccountLimit
[src]
fn default() -> AccountLimit
[src]
impl Clone for AccountLimit
[src]
fn clone(&self) -> AccountLimit
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AccountLimit
[src]
impl<'de> Deserialize<'de> for AccountLimit
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for AccountLimit
impl Sync for AccountLimit
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self