[][src]Struct rusoto_lambda::AccountLimit

pub struct AccountLimit {
    pub code_size_unzipped: Option<i64>,
    pub code_size_zipped: Option<i64>,
    pub concurrent_executions: Option<i64>,
    pub total_code_size: Option<i64>,
    pub unreserved_concurrent_executions: Option<i64>,
}

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]

impl Debug for AccountLimit[src]

impl Default for AccountLimit[src]

impl<'de> Deserialize<'de> for AccountLimit[src]

impl PartialEq<AccountLimit> for AccountLimit[src]

impl StructuralPartialEq for AccountLimit[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.