Skip to content

updateAwsTarget

No description available.

Arguments

Argument Type Description
input (required) UpdateAwsTargetInput! Request for updating an existing AWS target.

Returns

Target!

Sample

mutation UpdateAwsTarget($input: UpdateAwsTargetInput!) {
  updateAwsTarget(input: $input) {
    clusterName
    consumedBytes
    failedTasks
    id
    isActive
    isArchived
    isComplianceImmutabilitySupported
    locationConnectionStatus
    locationScope
    name
    readerRetrievalMethod
    runningTasks
    status
    targetType
    upgradeStatus
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "updateAwsTarget": {
      "clusterName": "example-string",
      "consumedBytes": 0,
      "failedTasks": 0,
      "id": "example-string",
      "isActive": true
    }
  }
}