Sleep_for with a variable time

Hello:
It can be used
ThisThread::sleep_for(BLINKING_RATE) , but the timing value is a variable?
Greetings
Carlos

    using namespace std::chrono_literals;
    std::chrono::milliseconds   Duration( 200ms );
    std::this_thread::sleep_for( Duration );