associateSigninDelegateGroupsWithAccount method
Associates the specified sign-in delegate groups with the specified Amazon Chime account.
May throw BadRequestException.
May throw ForbiddenException.
May throw NotFoundException.
May throw ServiceFailureException.
May throw ServiceUnavailableException.
May throw ThrottledClientException.
May throw UnauthorizedClientException.
Parameter accountId :
The Amazon Chime account ID.
Parameter signinDelegateGroups :
The sign-in delegate groups.
Implementation
Future<void> associateSigninDelegateGroupsWithAccount({
required String accountId,
required List<SigninDelegateGroup> signinDelegateGroups,
}) async {
final $payload = <String, dynamic>{
'SigninDelegateGroups': signinDelegateGroups,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri:
'/accounts/${Uri.encodeComponent(accountId)}?operation=associate-signin-delegate-groups',
exceptionFnMap: _exceptionFns,
);
}