Class: Aws::Lambda::Types::AccountLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AccountLimit
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Provides limits of code size and concurrency associated with the current account and region. For more information or to request a limit increase for concurrent executions, see [Lambda Limits].
Instance Attribute Summary collapse
-
#code_size_unzipped ⇒ Integer
Size, in bytes, of code/dependencies that you can zip into a deployment package (uncompressed zip/jar size) for uploading.
-
#code_size_zipped ⇒ Integer
Size, in bytes, of a single zipped code/dependencies package you can upload for your Lambda function(.zip/.jar file).
-
#concurrent_executions ⇒ Integer
Number of simultaneous executions of your function per region.
-
#total_code_size ⇒ Integer
Maximum size, in bytes, of a code package you can upload per region.
-
#unreserved_concurrent_executions ⇒ Integer
The number of concurrent executions available to functions that do not have concurrency limits set.
Instance Attribute Details
#code_size_unzipped ⇒ Integer
Size, in bytes, of code/dependencies that you can zip into a deployment package (uncompressed zip/jar size) for uploading. The default limit is 250 MB.
53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-lambda/types.rb', line 53 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) include Aws::Structure end |
#code_size_zipped ⇒ Integer
Size, in bytes, of a single zipped code/dependencies package you can upload for your Lambda function(.zip/.jar file). Try using Amazon S3 for uploading larger files. Default limit is 50 MB.
53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-lambda/types.rb', line 53 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) include Aws::Structure end |
#concurrent_executions ⇒ Integer
Number of simultaneous executions of your function per region. The default limit is 1000.
53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-lambda/types.rb', line 53 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) include Aws::Structure end |
#total_code_size ⇒ Integer
Maximum size, in bytes, of a code package you can upload per region. The default size is 75 GB.
53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-lambda/types.rb', line 53 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) include Aws::Structure end |
#unreserved_concurrent_executions ⇒ Integer
The number of concurrent executions available to functions that do not have concurrency limits set. For more information, see [Managing Concurrency].
[1]: docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html
53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-lambda/types.rb', line 53 class AccountLimit < Struct.new( :total_code_size, :code_size_unzipped, :code_size_zipped, :concurrent_executions, :unreserved_concurrent_executions) include Aws::Structure end |