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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Limits related to concurrency and code storage. All file and storage sizes are in bytes.

Instance Attribute Summary collapse

Instance Attribute Details

#code_size_unzippedInteger

The maximum size of your function’s code and layers when extracted.

Returns:

  • (Integer)


40
41
42
43
44
45
46
47
# File 'lib/aws-sdk-lambda/types.rb', line 40

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

#code_size_zippedInteger

The maximum size of a deployment package when uploaded direcly to AWS Lambda. Use Amazon S3 for larger files.

Returns:

  • (Integer)


40
41
42
43
44
45
46
47
# File 'lib/aws-sdk-lambda/types.rb', line 40

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

#concurrent_executionsInteger

The maximum number of simultaneous function executions.

Returns:

  • (Integer)


40
41
42
43
44
45
46
47
# File 'lib/aws-sdk-lambda/types.rb', line 40

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

#total_code_sizeInteger

The amount of storage space that you can use for all deployment packages and layer archives.

Returns:

  • (Integer)


40
41
42
43
44
45
46
47
# File 'lib/aws-sdk-lambda/types.rb', line 40

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

#unreserved_concurrent_executionsInteger

The maximum number of simultaneous function executions, less the concurrency reserved for individual functions with PutFunctionConcurrency.

Returns:

  • (Integer)


40
41
42
43
44
45
46
47
# File 'lib/aws-sdk-lambda/types.rb', line 40

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