1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartTrigger`](crate::operation::start_trigger::builders::StartTriggerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::start_trigger::builders::StartTriggerFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::start_trigger::builders::StartTriggerFluentBuilder::set_name):<br>required: **true**<br><p>The name of the trigger to start.</p><br>
    /// - On success, responds with [`StartTriggerOutput`](crate::operation::start_trigger::StartTriggerOutput) with field(s):
    ///   - [`name(Option<String>)`](crate::operation::start_trigger::StartTriggerOutput::name): <p>The name of the trigger that was started.</p>
    /// - On failure, responds with [`SdkError<StartTriggerError>`](crate::operation::start_trigger::StartTriggerError)
    pub fn start_trigger(&self) -> crate::operation::start_trigger::builders::StartTriggerFluentBuilder {
        crate::operation::start_trigger::builders::StartTriggerFluentBuilder::new(self.handle.clone())
    }
}