Class: Aws::Lambda::Types::AccountLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AccountLimit
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Limits that are related to concurrency and storage. All file and storage sizes are in bytes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_size_unzipped ⇒ Integer
The maximum size of a function's deployment package and layers when they're extracted.
-
#code_size_zipped ⇒ Integer
The maximum size of a deployment package when it's uploaded directly to Lambda.
-
#concurrent_executions ⇒ Integer
The maximum number of simultaneous function executions.
-
#total_code_size ⇒ Integer
The amount of storage space that you can use for all deployment packages and layer archives.
-
#unreserved_concurrent_executions ⇒ Integer
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
Instance Attribute Details
#code_size_unzipped ⇒ Integer
The maximum size of a function's deployment package and layers when they're extracted.
43 44 45 46 47 48 49 50 51 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 43 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |
#code_size_zipped ⇒ Integer
The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.
43 44 45 46 47 48 49 50 51 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 43 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |
#concurrent_executions ⇒ Integer
The maximum number of simultaneous function executions.
43 44 45 46 47 48 49 50 51 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 43 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |
#total_code_size ⇒ Integer
The amount of storage space that you can use for all deployment packages and layer archives.
43 44 45 46 47 48 49 50 51 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 43 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |
#unreserved_concurrent_executions ⇒ Integer
The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.
43 44 45 46 47 48 49 50 51 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 43 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) SENSITIVE = [] include Aws::Structure end |