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>,
}
Expand description
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§
Source§impl Clone for AccountLimit
impl Clone for AccountLimit
Source§fn clone(&self) -> AccountLimit
fn clone(&self) -> AccountLimit
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 AccountLimit
impl Debug for AccountLimit
Source§impl Default for AccountLimit
impl Default for AccountLimit
Source§fn default() -> AccountLimit
fn default() -> AccountLimit
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountLimit
impl<'de> Deserialize<'de> for AccountLimit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AccountLimit
impl PartialEq for AccountLimit
impl StructuralPartialEq for AccountLimit
Auto Trait Implementations§
impl Freeze for AccountLimit
impl RefUnwindSafe for AccountLimit
impl Send for AccountLimit
impl Sync for AccountLimit
impl Unpin for AccountLimit
impl UnwindSafe for AccountLimit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more