1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetTriggers`](crate::operation::batch_get_triggers::builders::BatchGetTriggersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`trigger_names(impl Into<String>)`](crate::operation::batch_get_triggers::builders::BatchGetTriggersFluentBuilder::trigger_names) / [`set_trigger_names(Option<Vec::<String>>)`](crate::operation::batch_get_triggers::builders::BatchGetTriggersFluentBuilder::set_trigger_names):<br>required: **true**<br><p>A list of trigger names, which may be the names returned from the <code>ListTriggers</code> operation.</p><br>
    /// - On success, responds with [`BatchGetTriggersOutput`](crate::operation::batch_get_triggers::BatchGetTriggersOutput) with field(s):
    ///   - [`triggers(Option<Vec::<Trigger>>)`](crate::operation::batch_get_triggers::BatchGetTriggersOutput::triggers): <p>A list of trigger definitions.</p>
    ///   - [`triggers_not_found(Option<Vec::<String>>)`](crate::operation::batch_get_triggers::BatchGetTriggersOutput::triggers_not_found): <p>A list of names of triggers not found.</p>
    /// - On failure, responds with [`SdkError<BatchGetTriggersError>`](crate::operation::batch_get_triggers::BatchGetTriggersError)
    pub fn batch_get_triggers(&self) -> crate::operation::batch_get_triggers::builders::BatchGetTriggersFluentBuilder {
        crate::operation::batch_get_triggers::builders::BatchGetTriggersFluentBuilder::new(self.handle.clone())
    }
}