deleteRoleAlias method
Deletes a role alias
Requires permission to access the DeleteRoleAlias action.
May throw DeleteConflictException.
May throw InternalFailureException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ServiceUnavailableException.
May throw ThrottlingException.
May throw UnauthorizedException.
Parameter roleAlias :
The role alias to delete.
Implementation
Future<void> deleteRoleAlias({
required String roleAlias,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/role-aliases/${Uri.encodeComponent(roleAlias)}',
exceptionFnMap: _exceptionFns,
);
}