class Amazonite::DynamoDB::ReplicaGlobalSecondaryIndexDescription

Overview

Represents the properties of a replica global secondary index.

Included Modules

Defined in:

dynamodb/replica_global_secondary_index_description.cr

Constructors

Instance Method Summary

Constructor Detail

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

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

The name of the global secondary index.


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

The name of the global secondary index.


[View source]
def on_demand_throughput_override : OnDemandThroughputOverride | Nil #

Overrides the maximum on-demand throughput 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 for the specified global secondary index in the specified replica table.


[View source]
def provisioned_throughput_override : ProvisionedThroughputOverride | Nil #

If not described, uses the source table GSI's read capacity settings.


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

If not described, uses the source table GSI's read capacity settings.


[View source]
def validate! : Nil #

[View source]
def warm_throughput : GlobalSecondaryIndexWarmThroughputDescription | Nil #

Represents the warm throughput of the global secondary index for this replica.


[View source]
def warm_throughput=(warm_throughput : GlobalSecondaryIndexWarmThroughputDescription | Nil) #

Represents the warm throughput of the global secondary index for this replica.


[View source]