class Amazonite::DynamoDB::ReplicaGlobalSecondaryIndex

Overview

Represents the properties of a replica global secondary index.

Included Modules

Defined in:

dynamodb/replica_global_secondary_index.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(index_name : String, provisioned_throughput_override : ProvisionedThroughputOverride | Nil = nil, on_demand_throughput_override : OnDemandThroughputOverride | 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.


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

The name of the global secondary index.


[View source]
def on_demand_throughput_override : OnDemandThroughputOverride | Nil #

Overrides the maximum on-demand throughput settings for the specified global secondary index in the specified replica table.


[View source]
def on_demand_throughput_override=(on_demand_throughput_override : OnDemandThroughputOverride | Nil) #

Overrides the maximum on-demand throughput settings for the specified global secondary index in the specified replica table.


[View source]
def provisioned_throughput_override : ProvisionedThroughputOverride | Nil #

Replica table GSI-specific provisioned throughput. If not specified, uses the source table GSI's read capacity settings.


[View source]
def provisioned_throughput_override=(provisioned_throughput_override : ProvisionedThroughputOverride | Nil) #

Replica table GSI-specific provisioned throughput. If not specified, uses the source table GSI's read capacity settings.


[View source]
def validate! : Nil #

[View source]