pub struct SchedulerClient<'a> { /* private fields */ }Implementations§
Source§impl SchedulerClient<'_>
impl SchedulerClient<'_>
Sourcepub async fn get_schedules(&self) -> Result<SchedulerSchedulesResponse, Error>
pub async fn get_schedules(&self) -> Result<SchedulerSchedulesResponse, Error>
List every EventBridge Scheduler schedule across every account and group.
Sourcepub async fn fire_schedule(
&self,
group: &str,
name: &str,
) -> Result<FireScheduleResponse, Error>
pub async fn fire_schedule( &self, group: &str, name: &str, ) -> Result<FireScheduleResponse, Error>
Fire a single schedule by (group, name) immediately, bypassing
the cron tick. Returns the schedule + target ARN that received the
invocation.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for SchedulerClient<'a>
impl<'a> !UnwindSafe for SchedulerClient<'a>
impl<'a> Freeze for SchedulerClient<'a>
impl<'a> Send for SchedulerClient<'a>
impl<'a> Sync for SchedulerClient<'a>
impl<'a> Unpin for SchedulerClient<'a>
impl<'a> UnsafeUnpin for SchedulerClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more