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)


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

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

#total_code_sizeInteger

The amount of storage space, in bytes, in use by deployment packages and layer archives.

Returns:

  • (Integer)


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

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