Skip to content

upgradeAwsCloudAccountFeaturesWithoutCft

Updates status of AWS cloud account features to connected if they are in update permissions state. This mutation should be used with caution. It should be invoked only after the latest required permissions are granted to the AWS cloud account user used by Rubrik. This mutation does not verify if the required permissions are actually granted to the user or not. Its usage is restricted to only IAM user-based and authentication server-based AWS cloud accounts.

Arguments

Argument Type Description
input (required) UpgradeAwsCloudAccountFeaturesWithoutCftInput! Input to update status of AWS cloud account features to connected from update permissions state.

Returns

Boolean!

Sample

mutation UpgradeAwsCloudAccountFeaturesWithoutCft($input: UpgradeAwsCloudAccountFeaturesWithoutCftInput!) {
  upgradeAwsCloudAccountFeaturesWithoutCft(input: $input)
}
{
  "input": {
    "awsCloudAccountId": "example-string",
    "features": [
      "ALL"
    ]
  }
}
{
  "data": {
    "upgradeAwsCloudAccountFeaturesWithoutCft": true
  }
}