Nullable

Define nullable property

You can define property as nullable.

@DynamoEntity()
class Cat {
    @DynamoProperty({ keyType: KeyType.hash })
    id!: number;

    @DynamoProperty({ keyType: KeyType.sort })
    age!: number;

    @DynamoProperty({
        keyType: KeyType.attr,
        nullable: true  // <<<
    })
    name?: string;

    constructor(id: number, age: number, name?: string) {
        this.id = id;
        this.age = age;
        this.name = name;
    }
}

For example,

It will formationed as,

Last updated

Was this helpful?