Skip to content

createOnDemandS3TablesIcebergTableBackup

Schedules an on-demand job to take a backup snapshot of an S3 Tables Iceberg table.

Arguments

Argument Type Description
input (required) CreateOnDemandS3TablesIcebergTableBackupInput! Source table and optional retention SLA.

Returns

CreateOnDemandS3TablesIcebergTableBackupReply!

Sample

mutation CreateOnDemandS3TablesIcebergTableBackup($input: CreateOnDemandS3TablesIcebergTableBackupInput!) {
  createOnDemandS3TablesIcebergTableBackup(input: $input) {
    taskchainUuid
  }
}
{
  "input": {
    "sourceTableId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "createOnDemandS3TablesIcebergTableBackup": {
      "taskchainUuid": "00000000-0000-0000-0000-000000000000"
    }
  }
}