toLambdaIsolationMode method
Implementation
LambdaIsolationMode toLambdaIsolationMode() {
switch (this) {
case 'GreengrassContainer':
return LambdaIsolationMode.greengrassContainer;
case 'NoContainer':
return LambdaIsolationMode.noContainer;
}
throw Exception('$this is not known in enum LambdaIsolationMode');
}