OBJECT

ValidatePermissionsForAccountReply

Description

Specifies the validation results for the given AWS cloud account.

link GraphQL Schema definition

  • type ValidatePermissionsForAccountReply {
  • # Specifies the ID of the validated AWS cloud account.
  • cloudAccountId: String!
  • # Specifies the name of the validated AWS cloud account.
  • cloudAccountName: String!
  • # Specifies the native ID of the validated AWS cloud account.
  • cloudAccountNativeId: String!
  • # Specifies the validation results for each of the features.
  • featureResults: [ValidatePermissionsForFeatureReply!]!
  • # Specifies the number of missing permissions for the
  • # given AWS cloud account.
  • numMissingPermissions: Int!
  • # Represents if the permissions for simulation are missing in
  • # the given AWS cloud account.
  • permissionMissingForSimulation: Boolean!
  • # Specifies the overall status of the validation for the
  • # given AWS cloud account.
  • status: SuccessStatus!
  • }