deleteUser method

Future<void> deleteUser({
  1. required String userName,
})

Deletes the specified IAM user. Unlike the AWS Management Console, when you delete a user programmatically, you must delete the items attached to the user manually, or the deletion fails. For more information, see Deleting an IAM User. Before attempting to delete a user, remove the following items:

May throw LimitExceededException. May throw NoSuchEntityException. May throw DeleteConflictException. May throw ConcurrentModificationException. May throw ServiceFailureException.

Parameter userName : The name of the user to delete.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Implementation

Future<void> deleteUser({
  required String userName,
}) async {
  ArgumentError.checkNotNull(userName, 'userName');
  _s.validateStringLength(
    'userName',
    userName,
    1,
    128,
    isRequired: true,
  );
  final $request = <String, dynamic>{};
  $request['UserName'] = userName;
  await _protocol.send(
    $request,
    action: 'DeleteUser',
    version: '2010-05-08',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteUserRequest'],
    shapes: shapes,
  );
}