You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportclassAlbumextendsModel<IAlbum>{// DynamoDB table nameprotected tableName ='my_albums';// The keys of the table. Here it is a composite key (artist,album)protectedhashkey='artist';protectedrangekey='album';// Optionally override constructorconstructor(item?: IAlbum){super(item);}}
the hashkey is no longer called that, instead it is called pk (same for rangeKet -> sk)
The text was updated successfully, but these errors were encountered:
For example:
the hashkey is no longer called that, instead it is called
pk
(same for rangeKet -> sk)The text was updated successfully, but these errors were encountered: