Class: Aws::Lambda::Types::AccountLimit

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#code_size_unzippedInteger

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.

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'lib/aws-sdk-lambda/types.rb', line 44

class AccountLimit < Struct.new(
  :total_code_size,
  :code_size_unzipped,
  :code_size_zipped,
  :concurrent_executions)
  include Aws::Structure
end

#code_size_zippedInteger

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.

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'lib/aws-sdk-lambda/types.rb', line 44

class AccountLimit < Struct.new(
  :total_code_size,
  :code_size_unzipped,
  :code_size_zipped,
  :concurrent_executions)
  include Aws::Structure
end

#concurrent_executionsInteger

Number of simultaneous executions of your function per region. For more information or to request a limit increase for concurrent executions, see [Lambda Function Concurrent Executions]. The default limit is 100.

[1]: docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'lib/aws-sdk-lambda/types.rb', line 44

class AccountLimit < Struct.new(
  :total_code_size,
  :code_size_unzipped,
  :code_size_zipped,
  :concurrent_executions)
  include Aws::Structure
end

#total_code_sizeInteger

Maximum size, in bytes, of a code package you can upload per region. The default size is 75 GB.

Returns:

  • (Integer)


44
45
46
47
48
49
50
# File 'lib/aws-sdk-lambda/types.rb', line 44

class AccountLimit < Struct.new(
  :total_code_size,
  :code_size_unzipped,
  :code_size_zipped,
  :concurrent_executions)
  include Aws::Structure
end