Skip to main content

aws_sdk_evidently/client/
delete_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 [`DeleteLaunch`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`project(impl Into<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that contains the launch to delete.</p><br>
7    ///   - [`launch(impl Into<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::launch) / [`set_launch(Option<String>)`](crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::set_launch):<br>required: **true**<br><p>The name of the launch to delete.</p><br>
8    /// - On success, responds with [`DeleteLaunchOutput`](crate::operation::delete_launch::DeleteLaunchOutput)
9    /// - On failure, responds with [`SdkError<DeleteLaunchError>`](crate::operation::delete_launch::DeleteLaunchError)
10    #[deprecated(note = "AWS CloudWatch Evidently has been deprecated since 11/17/2025.", since = "11/17/2025")]
11    pub fn delete_launch(&self) -> crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder {
12        crate::operation::delete_launch::builders::DeleteLaunchFluentBuilder::new(self.handle.clone())
13    }
14}