pub trait EventBridgeDelivery: Send + Sync {
// Required method
fn put_event(
&self,
source: &str,
detail_type: &str,
detail: &str,
event_bus_name: &str,
);
}Expand description
Trait for putting events onto an EventBridge bus from cross-service integrations.