# File lib/aws/core/resource.rb, line 202 def attribute name, options = {}, &block attr = Attribute.new(name, options) attr.instance_eval(&block) if block_given? define_attribute_getter(attr) define_attribute_setter(attr) if attr.mutable? attributes[attr.name] = attr end