# File lib/aws/resource.rb, line 188
      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