aws_sdk_glue/client/start_trigger.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 [`StartTrigger`](crate::operation::start_trigger::builders::StartTriggerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`StartTriggerOutput`](crate::operation::start_trigger::StartTriggerOutput) with field(s):
8 /// - [`name(Option<String>)`](crate::operation::start_trigger::StartTriggerOutput::name): <p>The name of the trigger that was started.</p>
9 /// - On failure, responds with [`SdkError<StartTriggerError>`](crate::operation::start_trigger::StartTriggerError)
10 pub fn start_trigger(&self) -> crate::operation::start_trigger::builders::StartTriggerFluentBuilder {
11 crate::operation::start_trigger::builders::StartTriggerFluentBuilder::new(self.handle.clone())
12 }
13}