class Amazonite::Lambda::AccountUsage

Overview

The number of functions and amount of storage in use.

Included Modules

Defined in:

lambda/account_usage.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(total_code_size : Int64 | Nil = nil, function_count : Int64 | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def function_count : Int64 | Nil #

The number of Lambda functions.


[View source]
def function_count=(function_count : Int64 | Nil) #

The number of Lambda functions.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def total_code_size : Int64 | Nil #

The amount of storage space, in bytes, that's being used by deployment packages and layer archives.


[View source]
def total_code_size=(total_code_size : Int64 | Nil) #

The amount of storage space, in bytes, that's being used by deployment packages and layer archives.


[View source]
def validate! : Nil #

[View source]