aws_sdk_evidently/client/
get_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 [`GetLaunch`](crate::operation::get_launch::builders::GetLaunchFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`project(impl Into<String>)`](crate::operation::get_launch::builders::GetLaunchFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::get_launch::builders::GetLaunchFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that contains the launch.</p><br>
7    ///   - [`launch(impl Into<String>)`](crate::operation::get_launch::builders::GetLaunchFluentBuilder::launch) / [`set_launch(Option<String>)`](crate::operation::get_launch::builders::GetLaunchFluentBuilder::set_launch):<br>required: **true**<br><p>The name of the launch that you want to see the details of.</p><br>
8    /// - On success, responds with [`GetLaunchOutput`](crate::operation::get_launch::GetLaunchOutput) with field(s):
9    ///   - [`launch(Option<Launch>)`](crate::operation::get_launch::GetLaunchOutput::launch): <p>A structure containing the configuration details of the launch.</p>
10    /// - On failure, responds with [`SdkError<GetLaunchError>`](crate::operation::get_launch::GetLaunchError)
11    pub fn get_launch(&self) -> crate::operation::get_launch::builders::GetLaunchFluentBuilder {
12        crate::operation::get_launch::builders::GetLaunchFluentBuilder::new(self.handle.clone())
13    }
14}