class Amazonite::DynamoDB::GlobalSecondaryIndexUpdate

Overview

Represents one of the following:

Included Modules

Defined in:

dynamodb/global_secondary_index_update.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(update : UpdateGlobalSecondaryIndexAction | Nil = nil, create : CreateGlobalSecondaryIndexAction | Nil = nil, delete : DeleteGlobalSecondaryIndexAction | 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 create : CreateGlobalSecondaryIndexAction | Nil #

The parameters required for creating a global secondary index on an existing table:


[View source]
def create=(create : CreateGlobalSecondaryIndexAction | Nil) #

The parameters required for creating a global secondary index on an existing table:


[View source]
def delete : DeleteGlobalSecondaryIndexAction | Nil #

The name of an existing global secondary index to be removed.


[View source]
def delete=(delete : DeleteGlobalSecondaryIndexAction | Nil) #

The name of an existing global secondary index to be removed.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def update : UpdateGlobalSecondaryIndexAction | Nil #

The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.


[View source]
def update=(update : UpdateGlobalSecondaryIndexAction | Nil) #

The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.


[View source]
def validate! : Nil #

[View source]