class Amazonite::DynamoDB::SourceTableFeatureDetails

Overview

Contains the details of the features enabled on the table when the backup was created. For example, LSIs, GSIs, streams, TTL.

Included Modules

Defined in:

dynamodb/source_table_feature_details.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(local_secondary_indexes : Array(LocalSecondaryIndexInfo) | Nil = nil, global_secondary_indexes : Array(GlobalSecondaryIndexInfo) | Nil = nil, stream_description : StreamSpecification | Nil = nil, time_to_live_description : TimeToLiveDescription | Nil = nil, sse_description : SSEDescription | Nil = nil, vector_indexes : Array(VectorIndexInfo) | Nil = nil) #

[View source]
def self.new(*, __pull_for_json_serializable pull : JSON::PullParser) #

[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 global_secondary_indexes : Array(GlobalSecondaryIndexInfo) | Nil #

Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.


[View source]
def global_secondary_indexes=(global_secondary_indexes : Array(GlobalSecondaryIndexInfo) | Nil) #

Represents the GSI properties for the table when the backup was created. It includes the IndexName, KeySchema, Projection, and ProvisionedThroughput for the GSIs on the table at the time of backup.


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

See Object#hash(hasher)


def local_secondary_indexes : Array(LocalSecondaryIndexInfo) | Nil #

Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.


[View source]
def local_secondary_indexes=(local_secondary_indexes : Array(LocalSecondaryIndexInfo) | Nil) #

Represents the LSI properties for the table when the backup was created. It includes the IndexName, KeySchema and Projection for the LSIs on the table at the time of backup.


[View source]
def sse_description : SSEDescription | Nil #

The description of the server-side encryption status on the table when the backup was created.


[View source]
def sse_description=(sse_description : SSEDescription | Nil) #

The description of the server-side encryption status on the table when the backup was created.


[View source]
def stream_description : StreamSpecification | Nil #

Stream settings on the table when the backup was created.


[View source]
def stream_description=(stream_description : StreamSpecification | Nil) #

Stream settings on the table when the backup was created.


[View source]
def time_to_live_description : TimeToLiveDescription | Nil #

Time to Live settings on the table when the backup was created.


[View source]
def time_to_live_description=(time_to_live_description : TimeToLiveDescription | Nil) #

Time to Live settings on the table when the backup was created.


[View source]
def validate! : Nil #

[View source]
def vector_indexes : Array(VectorIndexInfo) | Nil #

The vector index properties for the table at the time the backup was created, including the index name, vector attribute, dimensions, distance function, search schema, and projection.


[View source]
def vector_indexes=(vector_indexes : Array(VectorIndexInfo) | Nil) #

The vector index properties for the table at the time the backup was created, including the index name, vector attribute, dimensions, distance function, search schema, and projection.


[View source]