toLambdaFunctionMemoryMetricStatistic method
Implementation
LambdaFunctionMemoryMetricStatistic toLambdaFunctionMemoryMetricStatistic() {
switch (this) {
case 'LowerBound':
return LambdaFunctionMemoryMetricStatistic.lowerBound;
case 'UpperBound':
return LambdaFunctionMemoryMetricStatistic.upperBound;
case 'Expected':
return LambdaFunctionMemoryMetricStatistic.expected;
}
throw Exception(
'$this is not known in enum LambdaFunctionMemoryMetricStatistic');
}