toIdentityType method

IdentityType toIdentityType()

Implementation

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