aws_sdk_nimble/client/put_launch_profile_members.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 [`PutLaunchProfileMembers`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`client_token(impl Into<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::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 /// - [`identity_store_id(impl Into<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::identity_store_id) / [`set_identity_store_id(Option<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::set_identity_store_id):<br>required: **true**<br><p>The ID of the identity store.</p><br>
8 /// - [`launch_profile_id(impl Into<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::launch_profile_id) / [`set_launch_profile_id(Option<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::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>
9 /// - [`members(NewLaunchProfileMember)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::members) / [`set_members(Option<Vec::<NewLaunchProfileMember>>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::set_members):<br>required: **true**<br><p>A list of members.</p><br>
10 /// - [`studio_id(impl Into<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID.</p><br>
11 /// - On success, responds with [`PutLaunchProfileMembersOutput`](crate::operation::put_launch_profile_members::PutLaunchProfileMembersOutput)
12 /// - On failure, responds with [`SdkError<PutLaunchProfileMembersError>`](crate::operation::put_launch_profile_members::PutLaunchProfileMembersError)
13 pub fn put_launch_profile_members(&self) -> crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder {
14 crate::operation::put_launch_profile_members::builders::PutLaunchProfileMembersFluentBuilder::new(self.handle.clone())
15 }
16}