Skip to content

deleteAwsExocomputeConfigs

Deletes AWS Exocompute configs.

Arguments

Argument Type Description
input (required) DeleteAwsExocomputeConfigsInput! List of AWS exocompute configuration IDs.

Returns

DeleteAwsExocomputeConfigsReply!

Sample

mutation DeleteAwsExocomputeConfigs($input: DeleteAwsExocomputeConfigsInput!) {
  deleteAwsExocomputeConfigs(input: $input)
}
{
  "input": {
    "configIdsToBeDeleted": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "deleteAwsExocomputeConfigs": {
      "deletionStatus": [
        {
          "exocomputeConfigId": "example-string",
          "success": true
        }
      ]
    }
  }
}