Type Alias EntityDefinedAttributes<T>

EntityDefinedAttributes: Omit<
    ForeignKeyToValue<T>,

        | keyof default
        | RelationshipAttributeNames<T>
        | FunctionFields<T>
        | PartitionKeyAttribute<T>
        | SortKeyAttribute<T>,
>

Attributes that are defined on the Entity using the attribute decorators. This excludes:

  • relationship attributes
  • partition key attribute
  • sort key attribute
  • dyna-record default attributes
  • Functions defined on the entity

Type Parameters