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: STARTING
ID: 60d6249c-b8a3-4dd4-b77c-9ecc477c04aa
Created at: 2023-02-09T23:57:40Z
Updated at: 2023-02-09T23:57:40Z
Availability zone: AWS us-east-1
Function sources:
  Name | Description  
-------+--------------

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

demodb.public/demostore# DESCRIBE SANDBOX;
Status: RUNNING
ID: 60d6249c-b8a3-4dd4-b77c-9ecc477c04aa
Created at: 2023-02-09T23:57:40Z
Updated at: 2023-02-09T23:57:40Z
Availability zone: AWS us-east-1
Function sources:
  Name | Description  
-------+--------------

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

demodb.public/demostore# DESCRIBE SANDBOX;
Status: STOPPED

Last updated