+
+
+1. Open the **Import** page for your target cluster.
+
+ 1. Log in to the [TiDB Cloud console](https://tidbcloud.com/) and navigate to the [**Clusters**](https://tidbcloud.com/console/clusters) page of your project.
+
+ > **Tip:**
+ >
+ > If you have multiple projects, you can click in the lower-left corner and switch to another project.
+
+ 2. Click the name of your target cluster to go to its overview page, and then click **Import** in the left navigation pane.
+
+2. Configure the export information. On the **Import** page:
+
+ - Click **Export Data to** in the upper-right corner, then choose **Amazon S3** from the drop-down list.
+
+ Fill in the following parameters:
+
+ - **Task Name**: enter a name for the export task, default is `SNAPSHOT_{snapshot_time}`.
+ - **Exported data**: choose the databases and tables you want to export.
+ - **Data format**: choose one of the **SQL File** and **CSV**.
+ - **Compression**: choose one of the **Gzip**, **Snappy**, **Zstd**, and **None**.
+ - **File URI**: enter the URI of the Amazon S3.
+ - **Bucket Access**
+ - **AWS Role Arn**: enter the ARN of the role that has the permission to access the bucket.
+ - **AWS Access Key ID**: enter the access key ID and access key secret that has the permission to access the bucket.
+
+3. Click **Export**.
+
+4. After the export task is successful, you can download the exported data to your local file with TiDB Cloud CLI.
+
+
+
+
+
```shell
-ticloud serverless export create -c
--bucket-uri --access-key-id --secret-access-key
+ticloud serverless export create -c --s3.uri --s3.access-key-id --s3.secret-access-key --filter "database.table"
```
-### Export with the CSV format
+- s3.uri: The URI of the Amazon S3 bucket with the `s3:///path` format.
+- s3.access-key-id: The access key ID of the user who has the permission to access the bucket.
+- s3.secret-access-key: The access key secret of the user who has the permission to access the bucket.
```shell
-ticloud serverless export create -c --file-type CSV
+ticloud serverless export create -c --s3.uri --s3.role-arn --filter "database.table"
```
-### Export the whole database
+- s3.uri: The URI of the Amazon S3 bucket with the `s3:///path` format.
+- s3.role-arn: The ARN of the role that has the permission to access the bucket.
+
+
+
+
+### Export data to Google Cloud Storage
+
+You can only export data to Google Cloud Storage using the TiDB Cloud CLI now.
```shell
-ticloud serverless export create -c