class Amazonite::DynamoDB::GlobalSecondaryIndexWarmThroughputDescription

Overview

The description of the warm throughput value on a global secondary index.

Included Modules

Defined in:

dynamodb/global_secondary_index_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 : IndexStatus | Nil = nil) #

[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 read_units_per_second : Int64 | Nil #

Represents warm throughput read units per second value for a global secondary index.


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

Represents warm throughput read units per second value for a global secondary index.


[View source]
def status : IndexStatus | Nil #

Represents the warm throughput status being created or updated on a global secondary index. The status can only be UPDATING or ACTIVE.


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

Represents the warm throughput status being created or updated on a global secondary index. The status can only be UPDATING or ACTIVE.


[View source]
def validate! : Nil #

[View source]
def write_units_per_second : Int64 | Nil #

Represents warm throughput write units per second value for a global secondary index.


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

Represents warm throughput write units per second value for a global secondary index.


[View source]