class
Amazonite::Lambda::AccountLimit
- Amazonite::Lambda::AccountLimit
- Reference
- Object
Overview
Limits that are related to concurrency and storage. All file and storage sizes are in bytes.
Included Modules
- JSON::Serializable
Defined in:
lambda/account_limit.crConstructors
- .new(pull : JSON::PullParser)
- .new(total_code_size : Int64 | Nil = nil, code_size_unzipped : Int64 | Nil = nil, code_size_zipped : Int64 | Nil = nil, concurrent_executions : Int32 | Nil = nil, unreserved_concurrent_executions : Int32 | Nil = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#code_size_unzipped : Int64 | Nil
The maximum size of a function's deployment package and layers when they're extracted.
-
#code_size_unzipped=(code_size_unzipped : Int64 | Nil)
The maximum size of a function's deployment package and layers when they're extracted.
-
#code_size_zipped : Int64 | Nil
The maximum size of a deployment package when it's uploaded directly to Lambda.
-
#code_size_zipped=(code_size_zipped : Int64 | Nil)
The maximum size of a deployment package when it's uploaded directly to Lambda.
-
#concurrent_executions : Int32 | Nil
The maximum number of simultaneous function executions.
-
#concurrent_executions=(concurrent_executions : Int32 | Nil)
The maximum number of simultaneous function executions.
-
#hash(hasher)
See
Object#hash(hasher) -
#total_code_size : Int64 | Nil
The amount of storage space that you can use for all deployment packages and layer archives.
-
#total_code_size=(total_code_size : Int64 | Nil)
The amount of storage space that you can use for all deployment packages and layer archives.
-
#unreserved_concurrent_executions : Int32 | Nil
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
-
#unreserved_concurrent_executions=(unreserved_concurrent_executions : Int32 | Nil)
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
The maximum size of a function's deployment package and layers when they're extracted.
The maximum size of a function's deployment package and layers when they're extracted.
The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.
The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.
The maximum number of simultaneous function executions.
The amount of storage space that you can use for all deployment packages and layer archives.
The amount of storage space that you can use for all deployment packages and layer archives.
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.