Select the Enum dynamically

I have three enums Country_INDIA, Country_USA,Country_AUSTRALIA. At runtime, the country name is decided (could be one of INDIA or USA or AUSTRALIA). Is there a way I can pick the right enum based on the country name at runtime. For example, if the country name is USA , I want to pick Country_USA enum.

enum Country_INDIA {

  INTREST_RATE = '10%',
  MIN_INVESTMENT_DURATION = "5YRS"

};

enum Country_USA {

  INTREST_RATE = '3%',
  MIN_INVESTMENT_DURATION = "3YRS"
};

enum Country_AUSTRALIA {

  INTREST_RATE = '5%',
  MIN_INVESTMENT_DURATION = "2YRS"
};

let country_enum = "Country_"+"USA" 

console.log(country_enum.INTREST_RATE); // get the interst rate from 'Country_USA' enum