Class: Aws::Lambda::Types::AccountUsage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::AccountUsage
- 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
-
#function_count ⇒ Integer
The number of your account’s existing functions per region.
-
#total_code_size ⇒ Integer
Total size, in bytes, of the account’s deployment packages per region.
Instance Attribute Details
#function_count ⇒ Integer
The number of your account’s existing functions per region.
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_size ⇒ Integer
Total size, in bytes, of the account’s deployment packages per region.
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 |