OBJECT

SimulationResult

Description

Specifies the result of simulating an action.

link GraphQL Schema definition

  • type SimulationResult {
  • # Represents the specific AWS API action that was simulated
  • # for permission validation.
  • action: String!
  • # Specifies the detailed error description if the AWS IAM policy simulation
  • # failed or encountered an unexpected error during validation.
  • errorMessage: String!
  • # Indicates whether the AWS IAM role has permission to perform the
  • # specified action, based on the policy simulation results.
  • isAllowed: Boolean!
  • # Indicates whether the action was denied due to AWS IAM permission
  • # boundaries.
  • isDeniedByPermissionBoundaries: Boolean!
  • # Indicates whether the action was explicitly denied by AWS Service
  • # Control Policies (SCPs).
  • isDeniedByScp: Boolean!
  • }