How to express exponential terms in CVX with gp mode

I want to maximize the following term

maximize exp(s_1a_1+s_2a_2+...+s_Ta_T)

where $a$s are constants

How to express it in matlab program?

cvx_begin gp

variable s(T)

maximize (?)

subject to ------------

cvx_end