# File lib/aws/dynamo_db/table.rb, line 162
      def provision_throughput options = {}

        options[:read_capacity_units] ||= read_capacity_units
        options[:write_capacity_units] ||= write_capacity_units

        client_opts = {}
        client_opts[:table_name] = name
        client_opts[:provisioned_throughput] = options
        client.update_table(client_opts)

        options

      end