DESCRIBE SANDBOX

Syntax

DESCRIBE SANDBOX;

Description

This provides information about a sandbox, if any, in the user’s environment.

Examples

A sandbox that was just started will be in the STARTING status:

demodb.public/demostore# DESCRIBE SANDBOX;
+----------+--------------------------------------+---------------+-----------------+------------------------+-------------------------------+-------------------------------+
|  Status  |  Id                                  |  Region       |  Error Messages |  Function Sources      |  Created At                   |  Updated At                   |
+==========+======================================+===============+=================+========================+===============================+===============================+
| STARTING | ccff4480-1970-41fd-969e-34c40928eac6 | AWS us-east-1 | []              | ["demofnsrc","my_src"] | 2024-07-18 15:30:50 +0000 UTC | 2024-07-18 15:30:50 +0000 UTC |
+----------+--------------------------------------+---------------+-----------------+------------------------+-------------------------------+-------------------------------+

Once the sandbox is bootstrapped and running, it will transition to the RUNNING status:

demodb.public/demostore# DESCRIBE SANDBOX;
+---------+--------------------------------------+---------------+-----------------+------------------------+-------------------------------+-------------------------------+
|  Status |  Id                                  |  Region       |  Error Messages |  Function Sources      |  Created At                   |  Updated At                   |
+=========+======================================+===============+=================+========================+===============================+===============================+
| RUNNING | ccff4480-1970-41fd-969e-34c40928eac6 | AWS us-east-1 | []              | ["demofnsrc","my_src"] | 2024-07-18 15:30:50 +0000 UTC | 2024-07-18 15:30:50 +0000 UTC |
+---------+--------------------------------------+---------------+-----------------+------------------------+-------------------------------+-------------------------------+

Once the sandbox is terminated or stopped after being idle, it transitions to the STOPPED status:

demodb.public/demostore# DESCRIBE SANDBOX;
+---------+-----+---------+-----------------+-------------------+-------------+-------------+
|  Status |  Id |  Region |  Error Messages |  Function Sources |  Created At |  Updated At |
+=========+=====+=========+=================+===================+=============+=============+
| STOPPED |     |         |                 |                   | <null>      | <null>      |
+---------+-----+---------+-----------------+-------------------+-------------+-------------+

Last updated