class Amazonite::DynamoDB::ReplicaSettingsUpdate

Overview

Represents the settings for a global table in a Region that will be modified.

Included Modules

Defined in:

dynamodb/replica_settings_update.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(region_name : String, replica_provisioned_read_capacity_units : Int64 | Nil = nil, replica_provisioned_read_capacity_auto_scaling_settings_update : AutoScalingSettingsUpdate | Nil = nil, replica_global_secondary_index_settings_update : Array(ReplicaGlobalSecondaryIndexSettingsUpdate) | Nil = nil, replica_table_class : TableClass | 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 region_name : String #

The Region of the replica to be added.


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

The Region of the replica to be added.


[View source]
def replica_global_secondary_index_settings_update : Array(ReplicaGlobalSecondaryIndexSettingsUpdate) | Nil #

Represents the settings of a global secondary index for a global table that will be modified.


[View source]
def replica_global_secondary_index_settings_update=(replica_global_secondary_index_settings_update : Array(ReplicaGlobalSecondaryIndexSettingsUpdate) | Nil) #

Represents the settings of a global secondary index for a global table that will be modified.


[View source]
def replica_provisioned_read_capacity_auto_scaling_settings_update : AutoScalingSettingsUpdate | Nil #

Auto scaling settings for managing a global table replica's read capacity units.


[View source]
def replica_provisioned_read_capacity_auto_scaling_settings_update=(replica_provisioned_read_capacity_auto_scaling_settings_update : AutoScalingSettingsUpdate | Nil) #

Auto scaling settings for managing a global table replica's read capacity units.


[View source]
def replica_provisioned_read_capacity_units : Int64 | Nil #

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.


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

The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide.


[View source]
def replica_table_class : TableClass | Nil #

Replica-specific table class. If not specified, uses the source table's table class.


[View source]
def replica_table_class=(replica_table_class : TableClass | Nil) #

Replica-specific table class. If not specified, uses the source table's table class.


[View source]
def validate! : Nil #

[View source]