class Amazonite::CloudWatch::StatisticSet

Overview

Represents a set of statistics that describes a specific metric.

Included Modules

Defined in:

cloudwatch/statistic_set.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(sample_count : Float64, sum : Float64, minimum : Float64, maximum : Float64) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def maximum : Float64 #

The maximum value of the sample set.


[View source]
def maximum=(maximum : Float64) #

The maximum value of the sample set.


[View source]
def minimum : Float64 #

The minimum value of the sample set.


[View source]
def minimum=(minimum : Float64) #

The minimum value of the sample set.


[View source]
def sample_count : Float64 #

The number of samples used for the statistic set.


[View source]
def sample_count=(sample_count : Float64) #

The number of samples used for the statistic set.


[View source]
def sum : Float64 #

The sum of values for the sample set.


[View source]
def sum=(sum : Float64) #

The sum of values for the sample set.


[View source]
def validate! : Nil #

[View source]