aws_sdk_nimble/client/get_launch_profile_details.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 [`GetLaunchProfileDetails`](crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`launch_profile_id(impl Into<String>)`](crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder::launch_profile_id) / [`set_launch_profile_id(Option<String>)`](crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder::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_details::builders::GetLaunchProfileDetailsFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID.</p><br>
8 /// - On success, responds with [`GetLaunchProfileDetailsOutput`](crate::operation::get_launch_profile_details::GetLaunchProfileDetailsOutput) with field(s):
9 /// - [`launch_profile(Option<LaunchProfile>)`](crate::operation::get_launch_profile_details::GetLaunchProfileDetailsOutput::launch_profile): <p>The launch profile.</p>
10 /// - [`streaming_images(Option<Vec::<StreamingImage>>)`](crate::operation::get_launch_profile_details::GetLaunchProfileDetailsOutput::streaming_images): <p>A collection of streaming images.</p>
11 /// - [`studio_component_summaries(Option<Vec::<StudioComponentSummary>>)`](crate::operation::get_launch_profile_details::GetLaunchProfileDetailsOutput::studio_component_summaries): <p>A collection of studio component summaries.</p>
12 /// - On failure, responds with [`SdkError<GetLaunchProfileDetailsError>`](crate::operation::get_launch_profile_details::GetLaunchProfileDetailsError)
13 pub fn get_launch_profile_details(&self) -> crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder {
14 crate::operation::get_launch_profile_details::builders::GetLaunchProfileDetailsFluentBuilder::new(self.handle.clone())
15 }
16}