I found the following result on Wikipedia relating to the CDF of the Gamma Distribution when the shape parameter is an integer. (Note: there is a slight difference on how I have defined the scale parameter and how it is given on the Wikipedia page) $$ X \sim Gamma(n, \lambda)\\ f_x(x; n, \lambda) = \frac{e^{-\lambda}x^{n-1}}{\lambda^n \Gamma(n)}\\ F(x;n,\lambda) = 1 - \sum_{i=0}^{n-1}{\frac {(\lambda x)^i} {i!}e^{-\lambda x}} $$
Can we prove the above result by considering a Poisson Process with parameter $\lambda$?
I reasoned this out as follows: (I believe this is not a very rigorous proof)
Let $X_t$ denote the Poisson Process with parameter $\lambda$. We know that: $$ X_t \sim Poi(\lambda t) $$
Also, denote by $T_i$ the inter-arrival time between the ${(i-1)}^{th}$ and $i^{th}$ occurrence of the event. Now, since we are dealing with a Poisson Process with parameter $\lambda$ so, $T_i$'s are $iid$ $Exp(\lambda)$ distributed.
As a result, $$ \sum_{i=1}^{n}{T_i} \sim Gamma(n,\lambda) $$ Now, $$ \begin{align} \mathbb{P}[\sum_{i=1}^{n}{T_i} > t] &= Pr[by\ time\ t\ less\ than\ n\ events\ have\ occured]\\ &= \mathbb{P}[X_t < n]\\ &= \sum_{x=0}^{n-1}{\frac {(\lambda t)^x} {x!}e^{-\lambda t}} \end{align} $$
Finally, subtracting the above value from $1$ gives us the CDF in the required form.
Is this reasoning technically correct? I would highly appreciate if anyone could suggest a different method.