DynamoEntityConfig
type DynamoEntityConfig<Schema> = object;Type Parameters
Section titled “Type Parameters”Schema
Section titled “Schema”Schema extends ZodObject
Properties
Section titled “Properties”globalSecondaryIndexes?
Section titled “globalSecondaryIndexes?”optional globalSecondaryIndexes: GlobalSecondaryIndexKeyBuilders<EntitySchema<Schema>>;localSecondaryIndexes?
Section titled “localSecondaryIndexes?”optional localSecondaryIndexes: LocalSecondaryIndexKeyBuilders<EntitySchema<Schema>>;partitionKey?
Section titled “partitionKey?”optional partitionKey: DynamoKeyBuilder<EntitySchema<Schema>>;schema
Section titled “schema”schema: Schema;sortKey?
Section titled “sortKey?”optional sortKey: DynamoKeyBuilder<EntitySchema<Schema>>;table: DynamoTable;