class Amazonite::DynamoDB::TableCreationParameters

Overview

The parameters for the table created as part of the import operation.

Included Modules

Defined in:

dynamodb/table_creation_parameters.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(table_name : String, attribute_definitions : Array(AttributeDefinition), key_schema : Array(KeySchemaElement), billing_mode : BillingMode | Nil = nil, provisioned_throughput : ProvisionedThroughput | Nil = nil, on_demand_throughput : OnDemandThroughput | Nil = nil, sse_specification : SSESpecification | Nil = nil, global_secondary_indexes : Array(GlobalSecondaryIndex) | Nil = nil, vector_indexes : Array(VectorIndex) | Nil = nil) #

[View source]
def self.new(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 attribute_definitions : Array(AttributeDefinition) #

The attributes of the table created as part of the import operation.


[View source]
def attribute_definitions=(attribute_definitions : Array(AttributeDefinition)) #

The attributes of the table created as part of the import operation.


[View source]
def billing_mode : BillingMode | Nil #

The billing mode for provisioning the table created as part of the import operation.


[View source]
def billing_mode=(billing_mode : BillingMode | Nil) #

The billing mode for provisioning the table created as part of the import operation.


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

The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.


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

The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.


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

See Object#hash(hasher)


def key_schema : Array(KeySchemaElement) #

The primary key and option sort key of the table created as part of the import operation.


[View source]
def key_schema=(key_schema : Array(KeySchemaElement)) #

The primary key and option sort key of the table created as part of the import operation.


[View source]
def on_demand_throughput : OnDemandThroughput | Nil #

[View source]
def on_demand_throughput=(on_demand_throughput : OnDemandThroughput | Nil) #

[View source]
def provisioned_throughput : ProvisionedThroughput | Nil #

[View source]
def provisioned_throughput=(provisioned_throughput : ProvisionedThroughput | Nil) #

[View source]
def sse_specification : SSESpecification | Nil #

[View source]
def sse_specification=(sse_specification : SSESpecification | Nil) #

[View source]
def table_name : String #

The name of the table created as part of the import operation.


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

The name of the table created as part of the import operation.


[View source]
def validate! : Nil #

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

The vector indexes of the table to be created as part of the import operation.


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

The vector indexes of the table to be created as part of the import operation.


[View source]