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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#function_countInteger

The number of Lambda functions.

Returns:

  • (Integer)


66
67
68
69
70
71
# File 'lib/aws-sdk-lambda/types.rb', line 66

class AccountUsage < Struct.new(
  :total_code_size,
  :function_count)
  SENSITIVE = []
  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)


66
67
68
69
70
71
# File 'lib/aws-sdk-lambda/types.rb', line 66

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