[][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 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]

impl Default for AccountLimit[src]

impl Clone for 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]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self