@aniya.jaskolski
In DynamoDB, you cannot directly change the data type of a column. However, you can achieve this by creating a new column with the desired data type, copying the data from the old column to the new column, and then deleting the old column.
Here are the steps to change the data type of a column in DynamoDB:
Keep in mind that changing the data type of a column in DynamoDB can impact your application's functionality and may require you to update any dependent code or queries. Make sure to test the changes thoroughly before implementing them in a production environment.