I'm trying to understand how finding the largest eigenvalue can be phrased as an SDP. More or less everything I know about SDP comes from here. The problem itself is on page $5$.
Given a PSD matrix $A$ with eigenvalues $\lambda_1 \geq \lambda_2 \ldots \geq \lambda_n$, it's clear that the eigenvalues of $tI - A$ are $t - \lambda_i$ (where $I$ represents the identity matrix). Then $tI - A$ has all positive eigenvalues only when $t \geq \lambda_1$. Thus $$\lambda_1 = \text{min} \{ t \; | \; tI -A \succeq 0\}$$
Where I'm using $\succeq 0$ to mean the PSD ordering. I know SDP problems can take the form
\begin{align*} \text{minimize} \quad & C \bullet X \\ \text{s.t} \quad & A_i \bullet X \geq b_i \quad i = 1, \ldots, m \\ & X \succeq 0 \\ \end{align*}
How can I phrase the first minimum as a minimum of this form? What are the $C,X,A_i, b_i$? Even further, if $A(x)$ is a PSD matrix given by a vector $x$, how could I phrase minimizing the largest eigenvalue of $A(x)$ as an SDP in this form? Again I'm not sure how to choose the $C,X$, etc. This comes from trying to understand this.