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.
- : String!
- # Specifies the detailed error description if the AWS IAM policy simulation
- # failed or encountered an unexpected error during validation.
- : String!
- # Indicates whether the AWS IAM role has permission to perform the
- # specified action, based on the policy simulation results.
- : Boolean!
- # Indicates whether the action was denied due to AWS IAM permission
- # boundaries.
- : Boolean!
- # Indicates whether the action was explicitly denied by AWS Service
- # Control Policies (SCPs).
- : Boolean!
- }