Skip to content

createOnDemandGlueIcebergTableBackup

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

Arguments

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

Returns

CreateOnDemandGlueIcebergTableBackupReply!

Sample

mutation CreateOnDemandGlueIcebergTableBackup($input: CreateOnDemandGlueIcebergTableBackupInput!) {
  createOnDemandGlueIcebergTableBackup(input: $input) {
    taskchainUuid
  }
}
{
  "input": {
    "sourceTableId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "createOnDemandGlueIcebergTableBackup": {
      "taskchainUuid": "00000000-0000-0000-0000-000000000000"
    }
  }
}