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

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

Instance Attribute Details

#code_size_unzippedInteger

The maximum size of a function's deployment package and layers when they're extracted.

Returns:

  • (Integer)


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_zippedInteger

The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger files.

Returns:

  • (Integer)


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_executionsInteger

The maximum number of simultaneous function executions.

Returns:

  • (Integer)


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_sizeInteger

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

Returns:

  • (Integer)


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_executionsInteger

The maximum number of simultaneous function executions, minus the capacity that's reserved for individual functions with PutFunctionConcurrency.

Returns:

  • (Integer)


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