aws_sdk_nimble/client/delete_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 [`DeleteLaunchProfile`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`client_token(impl Into<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::set_client_token):<br>required: **false**<br><p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.</p><br>
7 /// - [`launch_profile_id(impl Into<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::launch_profile_id) / [`set_launch_profile_id(Option<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::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>
8 /// - [`studio_id(impl Into<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID.</p><br>
9 /// - On success, responds with [`DeleteLaunchProfileOutput`](crate::operation::delete_launch_profile::DeleteLaunchProfileOutput) with field(s):
10 /// - [`launch_profile(Option<LaunchProfile>)`](crate::operation::delete_launch_profile::DeleteLaunchProfileOutput::launch_profile): <p>The launch profile.</p>
11 /// - On failure, responds with [`SdkError<DeleteLaunchProfileError>`](crate::operation::delete_launch_profile::DeleteLaunchProfileError)
12 pub fn delete_launch_profile(&self) -> crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder {
13 crate::operation::delete_launch_profile::builders::DeleteLaunchProfileFluentBuilder::new(self.handle.clone())
14 }
15}