aws_sdk_chime/client/associate_signin_delegate_groups_with_account.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 [`AssociateSigninDelegateGroupsWithAccount`](crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`account_id(impl Into<String>)`](crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Chime account ID.</p><br>
7 /// - [`signin_delegate_groups(SigninDelegateGroup)`](crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder::signin_delegate_groups) / [`set_signin_delegate_groups(Option<Vec::<SigninDelegateGroup>>)`](crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder::set_signin_delegate_groups):<br>required: **true**<br><p>The sign-in delegate groups.</p><br>
8 /// - On success, responds with [`AssociateSigninDelegateGroupsWithAccountOutput`](crate::operation::associate_signin_delegate_groups_with_account::AssociateSigninDelegateGroupsWithAccountOutput)
9 /// - On failure, responds with [`SdkError<AssociateSigninDelegateGroupsWithAccountError>`](crate::operation::associate_signin_delegate_groups_with_account::AssociateSigninDelegateGroupsWithAccountError)
10 pub fn associate_signin_delegate_groups_with_account(
11 &self,
12 ) -> crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder {
13 crate::operation::associate_signin_delegate_groups_with_account::builders::AssociateSigninDelegateGroupsWithAccountFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}