toSavingsPlanRatePropertyKey method

SavingsPlanRatePropertyKey toSavingsPlanRatePropertyKey()

Implementation

SavingsPlanRatePropertyKey toSavingsPlanRatePropertyKey() {
  switch (this) {
    case 'region':
      return SavingsPlanRatePropertyKey.region;
    case 'instanceType':
      return SavingsPlanRatePropertyKey.instanceType;
    case 'instanceFamily':
      return SavingsPlanRatePropertyKey.instanceFamily;
    case 'productDescription':
      return SavingsPlanRatePropertyKey.productDescription;
    case 'tenancy':
      return SavingsPlanRatePropertyKey.tenancy;
  }
  throw Exception('$this is not known in enum SavingsPlanRatePropertyKey');
}