public Task CreateAsync(CognitoRole role) { try { try { var grouprequest = new CreateGroupRequest { Description = role.Description, GroupName = role.Name }; _client.CreateGroup(grouprequest); } catch (Exception e) { Console.WriteLine(e); throw; } } catch (Exception e) { Console.WriteLine(e); throw; } throw new NotImplementedException(); }