toValue method
Implementation
String toValue() {
switch (this) {
case ComputePlatform.server:
return 'Server';
case ComputePlatform.lambda:
return 'Lambda';
case ComputePlatform.ecs:
return 'ECS';
}
}
String toValue() {
switch (this) {
case ComputePlatform.server:
return 'Server';
case ComputePlatform.lambda:
return 'Lambda';
case ComputePlatform.ecs:
return 'ECS';
}
}