class Amazonite::DynamoDB::TableAutoScalingDescription

Overview

Represents the auto scaling configuration for a global table.

Included Modules

Defined in:

dynamodb/table_auto_scaling_description.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(table_name : String | Nil = nil, table_status : TableStatus | Nil = nil, replicas : Array(ReplicaAutoScalingDescription) | 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 replicas : Array(ReplicaAutoScalingDescription) | Nil #

Represents replicas of the global table.


[View source]
def replicas=(replicas : Array(ReplicaAutoScalingDescription) | Nil) #

Represents replicas of the global table.


[View source]
def table_name : String | Nil #

The name of the table.


[View source]
def table_name=(table_name : String | Nil) #

The name of the table.


[View source]
def table_status : TableStatus | Nil #

The current state of the table:

  • CREATING - The table is being created.

  • UPDATING - The table is being updated.

  • DELETING - The table is being deleted.

  • ACTIVE - The table is ready for use.


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

The current state of the table:

  • CREATING - The table is being created.

  • UPDATING - The table is being updated.

  • DELETING - The table is being deleted.

  • ACTIVE - The table is ready for use.


[View source]
def validate! : Nil #

[View source]