| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Lambda.Types.AccountLimit
Description
Synopsis
- data AccountLimit = AccountLimit' {}
- newAccountLimit :: AccountLimit
- accountLimit_codeSizeUnzipped :: Lens' AccountLimit (Maybe Integer)
- accountLimit_codeSizeZipped :: Lens' AccountLimit (Maybe Integer)
- accountLimit_concurrentExecutions :: Lens' AccountLimit (Maybe Int)
- accountLimit_totalCodeSize :: Lens' AccountLimit (Maybe Integer)
- accountLimit_unreservedConcurrentExecutions :: Lens' AccountLimit (Maybe Natural)
Documentation
data AccountLimit Source #
Limits that are related to concurrency and storage. All file and storage sizes are in bytes.
See: newAccountLimit smart constructor.
Constructors
| AccountLimit' | |
Fields
| |
Instances
newAccountLimit :: AccountLimit Source #
Create a value of AccountLimit with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:codeSizeUnzipped:AccountLimit', accountLimit_codeSizeUnzipped - The maximum size of a function's deployment package and layers when
they're extracted.
$sel:codeSizeZipped:AccountLimit', accountLimit_codeSizeZipped - The maximum size of a deployment package when it's uploaded directly to
Lambda. Use Amazon S3 for larger files.
$sel:concurrentExecutions:AccountLimit', accountLimit_concurrentExecutions - The maximum number of simultaneous function executions.
$sel:totalCodeSize:AccountLimit', accountLimit_totalCodeSize - The amount of storage space that you can use for all deployment packages
and layer archives.
$sel:unreservedConcurrentExecutions:AccountLimit', accountLimit_unreservedConcurrentExecutions - The maximum number of simultaneous function executions, minus the
capacity that's reserved for individual functions with
PutFunctionConcurrency.
accountLimit_codeSizeUnzipped :: Lens' AccountLimit (Maybe Integer) Source #
The maximum size of a function's deployment package and layers when they're extracted.
accountLimit_codeSizeZipped :: Lens' AccountLimit (Maybe Integer) Source #
The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.
accountLimit_concurrentExecutions :: Lens' AccountLimit (Maybe Int) Source #
The maximum number of simultaneous function executions.
accountLimit_totalCodeSize :: Lens' AccountLimit (Maybe Integer) Source #
The amount of storage space that you can use for all deployment packages and layer archives.
accountLimit_unreservedConcurrentExecutions :: Lens' AccountLimit (Maybe Natural) Source #
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.