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 [`StartLaunch`](crate::operation::start_launch::builders::StartLaunchFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project(impl Into<String>)`](crate::operation::start_launch::builders::StartLaunchFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::start_launch::builders::StartLaunchFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that contains the launch to start.</p><br>
    ///   - [`launch(impl Into<String>)`](crate::operation::start_launch::builders::StartLaunchFluentBuilder::launch) / [`set_launch(Option<String>)`](crate::operation::start_launch::builders::StartLaunchFluentBuilder::set_launch):<br>required: **true**<br><p>The name of the launch to start.</p><br>
    /// - On success, responds with [`StartLaunchOutput`](crate::operation::start_launch::StartLaunchOutput) with field(s):
    ///   - [`launch(Option<Launch>)`](crate::operation::start_launch::StartLaunchOutput::launch): <p>A structure that contains information about the launch that was started.</p>
    /// - On failure, responds with [`SdkError<StartLaunchError>`](crate::operation::start_launch::StartLaunchError)
    pub fn start_launch(&self) -> crate::operation::start_launch::builders::StartLaunchFluentBuilder {
        crate::operation::start_launch::builders::StartLaunchFluentBuilder::new(self.handle.clone())
    }
}