Class: Aws::Lambda::Types::AccountUsage

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

Overview

The number of functions and amount of storage in use.

Instance Attribute Summary collapse

Instance Attribute Details

#function_countInteger

The number of Lambda functions.

Returns:

  • (Integer)


63
64
65
66
67
# File 'lib/aws-sdk-lambda/types.rb', line 63

class AccountUsage < Struct.new(
  :total_code_size,
  :function_count)
  include Aws::Structure
end

#total_code_sizeInteger

The amount of storage space, in bytes, that’s being used by deployment packages and layer archives.

Returns:

  • (Integer)


63
64
65
66
67
# File 'lib/aws-sdk-lambda/types.rb', line 63

class AccountUsage < Struct.new(
  :total_code_size,
  :function_count)
  include Aws::Structure
end