I have a Cloud Formation template to create a SQL DB in the RDS and want to enable Delayed_Durability feature by default in it by running this query: ALTER DATABASE dbname SET DELAYED_DURABILITY = FORCED; Is there a way to run this query right after db instance is created through CF template? My CF template looks like this: Answer Is