sdbusplus: use shorter type aliases

The sdbusplus headers provide shortened aliases for many types.
Switch to using them to provide better code clarity and shorter
lines.  Possible replacements are for:
  * bus_t
  * exception_t
  * manager_t
  * match_t
  * message_t
  * object_t
  * slot_t

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Idf165747d0fd6079ba217992f2c46a388ce2d906
diff --git a/hsbp-manager/src/hsbp_manager.cpp b/hsbp-manager/src/hsbp_manager.cpp
index ad1aea2..9bb1367 100644
--- a/hsbp-manager/src/hsbp_manager.cpp
+++ b/hsbp-manager/src/hsbp_manager.cpp
@@ -1455,11 +1455,11 @@
 
     conn->request_name(busName);
 
-    sdbusplus::bus::match::match match(
+    sdbusplus::bus::match_t match(
         *conn,
         "type='signal',member='PropertiesChanged',arg0='" +
             std::string(configType) + "'",
-        [&callbackTimer](sdbusplus::message::message&) {
+        [&callbackTimer](sdbusplus::message_t&) {
             callbackTimer.expires_after(std::chrono::seconds(2));
             callbackTimer.async_wait([](const boost::system::error_code ec) {
                 if (ec == boost::asio::error::operation_aborted)
@@ -1476,11 +1476,11 @@
             });
         });
 
-    sdbusplus::bus::match::match drive(
+    sdbusplus::bus::match_t drive(
         *conn,
         "type='signal',member='PropertiesChanged',arg0='xyz.openbmc_project."
         "Inventory.Item.NVMe'",
-        [&callbackTimer](sdbusplus::message::message& message) {
+        [&callbackTimer](sdbusplus::message_t& message) {
             callbackTimer.expires_after(std::chrono::seconds(2));
             if (message.get_sender() == conn->get_unique_name())
             {