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

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

Overview

Provides code size usage and function count associated with the current account and region.

Instance Attribute Summary collapse

Instance Attribute Details

#function_countInteger

The number of your account’s existing functions per region.

Returns:

  • (Integer)


76
77
78
79
80
# File 'lib/aws-sdk-lambda/types.rb', line 76

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

#total_code_sizeInteger

Total size, in bytes, of the account’s deployment packages per region.

Returns:

  • (Integer)


76
77
78
79
80
# File 'lib/aws-sdk-lambda/types.rb', line 76

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