summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php')
-rw-r--r--vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php b/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php
new file mode 100644
index 0000000..3202c40
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/MonitoringEventsInterface.php
@@ -0,0 +1,32 @@
+<?php
+namespace Aws;
+
+/**
+ * Interface for adding and retrieving client-side monitoring events
+ */
+interface MonitoringEventsInterface
+{
+
+ /**
+ * Get client-side monitoring events attached to this object. Each event is
+ * represented as an associative array within the returned array.
+ *
+ * @return array
+ */
+ public function getMonitoringEvents();
+
+ /**
+ * Prepend a client-side monitoring event to this object's event list
+ *
+ * @param array $event
+ */
+ public function prependMonitoringEvent(array $event);
+
+ /**
+ * Append a client-side monitoring event to this object's event list
+ *
+ * @param array $event
+ */
+ public function appendMonitoringEvent(array $event);
+
+}