Skip to content

startAwsNativeRdsInstanceSnapshotsJob

Start job to create snapshots of RDS Instance with given IDs. When completed, this will start taking an on-demand snapshot of the selected RDS Instances as per the SLA Policy assigned to the respective instances.

Arguments

Argument Type Description
input (required) StartAwsNativeRdsInstanceSnapshotsJobInput! Input to trigger job to create AWS RDS Instance snapshots.

Returns

BatchAsyncJobStatus!

Sample

mutation StartAwsNativeRdsInstanceSnapshotsJob($input: StartAwsNativeRdsInstanceSnapshotsJobInput!) {
  startAwsNativeRdsInstanceSnapshotsJob(input: $input)
}
{
  "input": {
    "rdsInstanceIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "startAwsNativeRdsInstanceSnapshotsJob": {
      "errors": [
        {
          "error": "example-string",
          "rubrikObjectId": "example-string"
        }
      ],
      "jobIds": [
        {
          "jobId": "example-string",
          "rubrikObjectId": "example-string"
        }
      ]
    }
  }
}