toIdentityType method
Implementation
IdentityType toIdentityType() {
switch (this) {
case 'IAM':
return IdentityType.iam;
case 'QUICKSIGHT':
return IdentityType.quicksight;
}
throw Exception('$this is not known in enum IdentityType');
}