[−][src]Struct rusoto_lambda::AccountLimit
Limits that are related to concurrency and storage. All file and storage sizes are in bytes.
Fields
code_size_unzipped: Option<i64>The maximum size of a function's deployment package 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 Clone for AccountLimit[src]
fn clone(&self) -> AccountLimit[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for AccountLimit[src]
impl Default for AccountLimit[src]
fn default() -> 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>,
impl PartialEq<AccountLimit> for AccountLimit[src]
fn eq(&self, other: &AccountLimit) -> bool[src]
fn ne(&self, other: &AccountLimit) -> bool[src]
impl StructuralPartialEq for AccountLimit[src]
Auto Trait Implementations
impl RefUnwindSafe for AccountLimit
impl Send for AccountLimit
impl Sync for AccountLimit
impl Unpin for AccountLimit
impl UnwindSafe for AccountLimit
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,