Class: Aws::Lambda::Types::AccountUsage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AccountUsage
- 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
-
#function_count ⇒ Integer
The number of Lambda functions.
-
#total_code_size ⇒ Integer
The amount of storage space, in bytes, that’s being used by deployment packages and layer archives.
Instance Attribute Details
#function_count ⇒ Integer
The number of Lambda functions.
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_size ⇒ Integer
The amount of storage space, in bytes, that’s being used by deployment packages and layer archives.
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 |