It's possible to modify an attribute's default_value and have those modifications carry over to new instances of the model. Example: ```ruby class MyModel include Aws::Record map_attr :things, default_value: {} end ``` ```ruby > MyModel.new.things[:foo] = :bar => :bar > MyModel.new.things => {:foo=>:bar} ```