Skip to content

startExportRdsInstanceJob

Start a job to export RDS Instance. The job creates a new RDS Instance with the same properties as that of the instance that is exported.

Arguments

Argument Type Description
input (required) StartExportRdsInstanceJobInput! Input to trigger export AWS native RDS Instance job.

Returns

AsyncJobStatus!

Sample

mutation StartExportRdsInstanceJob($input: StartExportRdsInstanceJobInput!) {
  startExportRdsInstanceJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "dbInstanceClass": "DB_M1_LARGE",
    "dbInstanceName": "example-string",
    "destinationAwsNativeAccountId": "example-string",
    "destinationRegionNativeId": "AF_SOUTH_1",
    "isMultiAz": true,
    "isPointInTime": true,
    "isPubliclyAccessible": true,
    "port": 0,
    "rdsInstanceId": "00000000-0000-0000-0000-000000000000",
    "shouldExportTags": true
  }
}
{
  "data": {
    "startExportRdsInstanceJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}