class Amazonite::DynamoDB::TableWarmThroughputDescription

Overview

Represents the warm throughput value (in read units per second and write units per second) of the table. Warm throughput is applicable for DynamoDB Standard-IA tables and specifies the minimum provisioned capacity maintained for immediate data access.

Included Modules

Defined in:

dynamodb/table_warm_throughput_description.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(read_units_per_second : Int64 | Nil = nil, write_units_per_second : Int64 | Nil = nil, status : TableStatus | 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 hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def read_units_per_second : Int64 | Nil #

Represents the base table's warm throughput value in read units per second.


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

Represents the base table's warm throughput value in read units per second.


[View source]
def status : TableStatus | Nil #

Represents warm throughput value of the base table.


[View source]
def status=(status : TableStatus | Nil) #

Represents warm throughput value of the base table.


[View source]
def validate! : Nil #

[View source]
def write_units_per_second : Int64 | Nil #

Represents the base table's warm throughput value in write units per second.


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

Represents the base table's warm throughput value in write units per second.


[View source]