aws_sdk_evidently/client/start_launch.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 [`StartLaunch`](crate::operation::start_launch::builders::StartLaunchFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`StartLaunchOutput`](crate::operation::start_launch::StartLaunchOutput) with field(s):
9 /// - [`launch(Option<Launch>)`](crate::operation::start_launch::StartLaunchOutput::launch): <p>A structure that contains information about the launch that was started.</p>
10 /// - On failure, responds with [`SdkError<StartLaunchError>`](crate::operation::start_launch::StartLaunchError)
11 pub fn start_launch(&self) -> crate::operation::start_launch::builders::StartLaunchFluentBuilder {
12 crate::operation::start_launch::builders::StartLaunchFluentBuilder::new(self.handle.clone())
13 }
14}