Which syntax correctly enables DynamoDB Streams on a table using AWS CLI?
Aaws dynamodb set-stream --table MyTable --enabled true --view NEW_IMAGE
Baws dynamodb enable-stream --table MyTable --view NEW_IMAGE
Caws dynamodb update-table --table-name MyTable --stream-specification StreamEnabled=true,StreamViewType=NEW_IMAGE
Daws dynamodb create-stream --table-name MyTable --type NEW_IMAGE