toAMITypes method
Implementation
AMITypes toAMITypes() {
switch (this) {
case 'AL2_x86_64':
return AMITypes.al2X86_64;
case 'AL2_x86_64_GPU':
return AMITypes.al2X86_64Gpu;
case 'AL2_ARM_64':
return AMITypes.al2Arm_64;
}
throw Exception('$this is not known in enum AMITypes');
}