toCRType method
Implementation
CRType toCRType() {
switch (this) {
case 'EC2':
return CRType.ec2;
case 'SPOT':
return CRType.spot;
case 'FARGATE':
return CRType.fargate;
case 'FARGATE_SPOT':
return CRType.fargateSpot;
}
throw Exception('$this is not known in enum CRType');
}