aws_sdk_nimble/client/
get_launch_profile.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 [`GetLaunchProfile`](crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`launch_profile_id(impl Into<String>)`](crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder::launch_profile_id) / [`set_launch_profile_id(Option<String>)`](crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder::set_launch_profile_id):<br>required: **true**<br><p>The ID of the launch profile used to control access from the streaming session.</p><br>
7    ///   - [`studio_id(impl Into<String>)`](crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID.</p><br>
8    /// - On success, responds with [`GetLaunchProfileOutput`](crate::operation::get_launch_profile::GetLaunchProfileOutput) with field(s):
9    ///   - [`launch_profile(Option<LaunchProfile>)`](crate::operation::get_launch_profile::GetLaunchProfileOutput::launch_profile): <p>The launch profile.</p>
10    /// - On failure, responds with [`SdkError<GetLaunchProfileError>`](crate::operation::get_launch_profile::GetLaunchProfileError)
11    pub fn get_launch_profile(&self) -> crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder {
12        crate::operation::get_launch_profile::builders::GetLaunchProfileFluentBuilder::new(self.handle.clone())
13    }
14}