aws_sdk_ioteventsdata/client/batch_snooze_alarm.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`BatchSnoozeAlarm`](crate::operation::batch_snooze_alarm::builders::BatchSnoozeAlarmFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`snooze_action_requests(SnoozeAlarmActionRequest)`](crate::operation::batch_snooze_alarm::builders::BatchSnoozeAlarmFluentBuilder::snooze_action_requests) / [`set_snooze_action_requests(Option<Vec::<SnoozeAlarmActionRequest>>)`](crate::operation::batch_snooze_alarm::builders::BatchSnoozeAlarmFluentBuilder::set_snooze_action_requests):<br>required: **true**<br><p>The list of snooze action requests. You can specify up to 10 requests per operation.</p><br>
7 /// - On success, responds with [`BatchSnoozeAlarmOutput`](crate::operation::batch_snooze_alarm::BatchSnoozeAlarmOutput) with field(s):
8 /// - [`error_entries(Option<Vec::<BatchAlarmActionErrorEntry>>)`](crate::operation::batch_snooze_alarm::BatchSnoozeAlarmOutput::error_entries): <p>A list of errors associated with the request, or <code>null</code> if there are no errors. Each error entry contains an entry ID that helps you identify the entry that failed.</p>
9 /// - On failure, responds with [`SdkError<BatchSnoozeAlarmError>`](crate::operation::batch_snooze_alarm::BatchSnoozeAlarmError)
10 pub fn batch_snooze_alarm(&self) -> crate::operation::batch_snooze_alarm::builders::BatchSnoozeAlarmFluentBuilder {
11 crate::operation::batch_snooze_alarm::builders::BatchSnoozeAlarmFluentBuilder::new(self.handle.clone())
12 }
13}