Skip to content

startAwsExocomputeDisableJob

Starts a job to disable AWS Exocompute feature. When complete, the job will disable exocompute feature for the specified AWS Native account.

Arguments

Argument Type Description
input (required) StartAwsExocomputeDisableJobInput! Input required to start the job to disable AWS Exocompute.

Returns

AsyncJobStatus!

Sample

mutation StartAwsExocomputeDisableJob($input: StartAwsExocomputeDisableJobInput!) {
  startAwsExocomputeDisableJob(input: $input) {
    error
    jobId
  }
}
{
  "input": {
    "cloudAccountId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "startAwsExocomputeDisableJob": {
      "error": "example-string",
      "jobId": "example-string"
    }
  }
}