Skip to content

startAwsNativeAccountDisableJob

Starts a job to disable a specific AWS Native account. When complete, the job will disable protection for the specified AWS Native account.

Arguments

Argument Type Description
input (required) StartAwsNativeAccountDisableJobInput! Input for AWS native account disable job.

Returns

AsyncJobStatus!

Sample

mutation StartAwsNativeAccountDisableJob($input: StartAwsNativeAccountDisableJobInput!) {
  startAwsNativeAccountDisableJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "awsAccountRubrikId": "00000000-0000-0000-0000-000000000000",
    "awsNativeProtectionFeature": "CLOUD_DISCOVERY",
    "shouldDeleteNativeSnapshots": true
  }
}
{
  "data": {
    "startAwsNativeAccountDisableJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}