class Amazonite::DynamoDB::ReplicaGlobalSecondaryIndexSettingsDescription

Overview

Represents the properties of a global secondary index.

Included Modules

Defined in:

dynamodb/replica_global_secondary_index_settings_description.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(index_name : String, index_status : IndexStatus | Nil = nil, provisioned_read_capacity_units : Int64 | Nil = nil, provisioned_read_capacity_auto_scaling_settings : AutoScalingSettingsDescription | Nil = nil, provisioned_write_capacity_units : Int64 | Nil = nil, provisioned_write_capacity_auto_scaling_settings : AutoScalingSettingsDescription | 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 index_name : String #

The name of the global secondary index. The name must be unique among all other indexes on this table.


[View source]
def index_name=(index_name : String) #

The name of the global secondary index. The name must be unique among all other indexes on this table.


[View source]
def index_status : IndexStatus | Nil #

The current status of the global secondary index:

  • CREATING - The global secondary index is being created.

  • UPDATING - The global secondary index is being updated.

  • DELETING - The global secondary index is being deleted.

  • ACTIVE - The global secondary index is ready for use.


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

The current status of the global secondary index:

  • CREATING - The global secondary index is being created.

  • UPDATING - The global secondary index is being updated.

  • DELETING - The global secondary index is being deleted.

  • ACTIVE - The global secondary index is ready for use.


[View source]
def provisioned_read_capacity_auto_scaling_settings : AutoScalingSettingsDescription | Nil #

Auto scaling settings for a global secondary index replica's read capacity units.


[View source]
def provisioned_read_capacity_auto_scaling_settings=(provisioned_read_capacity_auto_scaling_settings : AutoScalingSettingsDescription | Nil) #

Auto scaling settings for a global secondary index replica's read capacity units.


[View source]
def provisioned_read_capacity_units : Int64 | Nil #

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.


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

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException.


[View source]
def provisioned_write_capacity_auto_scaling_settings : AutoScalingSettingsDescription | Nil #

Auto scaling settings for a global secondary index replica's write capacity units.


[View source]
def provisioned_write_capacity_auto_scaling_settings=(provisioned_write_capacity_auto_scaling_settings : AutoScalingSettingsDescription | Nil) #

Auto scaling settings for a global secondary index replica's write capacity units.


[View source]
def provisioned_write_capacity_units : Int64 | Nil #

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.


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

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.


[View source]
def validate! : Nil #

[View source]