1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteLaunch`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project(impl Into<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::set_project): <p>The name or ARN of the project that contains the launch to delete.</p>
    ///   - [`launch(impl Into<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::launch) / [`set_launch(Option<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::set_launch): <p>The name of the launch to delete.</p>
    /// - On success, responds with [`DeleteLaunchOutput`](crate::operation::delete_launch::DeleteLaunchOutput)
    /// - On failure, responds with [`SdkError<DeleteLaunchError>`](crate::operation::delete_launch::DeleteLaunchError)
    pub fn delete_launch(
        &self,
    ) -> crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder {
        crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::new(
            self.handle.clone(),
        )
    }
}