deleteUserPermissionsBoundary method
Deletes the permissions boundary for the specified IAM user.
May throw NoSuchEntityException.
May throw ServiceFailureException.
Parameter userName :
The name (friendly name, not ARN) of the IAM user from which you want to
remove the permissions boundary.
Implementation
Future<void> deleteUserPermissionsBoundary({
required String userName,
}) async {
final $request = <String, String>{
'UserName': userName,
};
await _protocol.send(
$request,
action: 'DeleteUserPermissionsBoundary',
version: '2010-05-08',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
);
}