# File lib/aws/cloud_formation/stack_resource_collection.rb, line 65
      def _each_item options = {}
        options[:stack_name] = stack.name
        response = client.describe_stack_resources(options)
        response.stack_resources.each do |details|

          stack_resource = StackResource.new_from(
            :describe_stack_resources,
            details,
            self,
            details.logical_resource_id)

          yield(stack_resource)

        end
      end