Copyright | (c) 2013-2023 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data ResourceSpecificResult = ResourceSpecificResult' {}
- newResourceSpecificResult :: Text -> PolicyEvaluationDecisionType -> ResourceSpecificResult
- resourceSpecificResult_evalDecisionDetails :: Lens' ResourceSpecificResult (Maybe (HashMap Text PolicyEvaluationDecisionType))
- resourceSpecificResult_matchedStatements :: Lens' ResourceSpecificResult (Maybe [Statement])
- resourceSpecificResult_missingContextValues :: Lens' ResourceSpecificResult (Maybe [Text])
- resourceSpecificResult_permissionsBoundaryDecisionDetail :: Lens' ResourceSpecificResult (Maybe PermissionsBoundaryDecisionDetail)
- resourceSpecificResult_evalResourceName :: Lens' ResourceSpecificResult Text
- resourceSpecificResult_evalResourceDecision :: Lens' ResourceSpecificResult PolicyEvaluationDecisionType
Documentation
data ResourceSpecificResult Source #
Contains the result of the simulation of a single API operation call on a single resource.
This data type is used by a member of the EvaluationResult data type.
See: newResourceSpecificResult
smart constructor.
ResourceSpecificResult' | |
|
Instances
newResourceSpecificResult Source #
Create a value of ResourceSpecificResult
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:evalDecisionDetails:ResourceSpecificResult'
, resourceSpecificResult_evalDecisionDetails
- Additional details about the results of the evaluation decision on a
single resource. This parameter is returned only for cross-account
simulations. This parameter explains how each policy type contributes to
the resource-specific evaluation decision.
$sel:matchedStatements:ResourceSpecificResult'
, resourceSpecificResult_matchedStatements
- A list of the statements in the input policies that determine the result
for this part of the simulation. Remember that even if multiple
statements allow the operation on the resource, if any statement
denies that operation, then the explicit deny overrides any allow. In
addition, the deny statement is the only entry included in the result.
$sel:missingContextValues:ResourceSpecificResult'
, resourceSpecificResult_missingContextValues
- A list of context keys that are required by the included input policies
but that were not provided by one of the input parameters. This list is
used when a list of ARNs is included in the ResourceArns
parameter
instead of "*". If you do not specify individual resources, by setting
ResourceArns
to "*" or by not including the ResourceArns
parameter, then any missing context values are instead included under
the EvaluationResults
section. To discover the context keys used by a
set of policies, you can call GetContextKeysForCustomPolicy or
GetContextKeysForPrincipalPolicy.
$sel:permissionsBoundaryDecisionDetail:ResourceSpecificResult'
, resourceSpecificResult_permissionsBoundaryDecisionDetail
- Contains information about the effect that a permissions boundary has on
a policy simulation when that boundary is applied to an IAM entity.
$sel:evalResourceName:ResourceSpecificResult'
, resourceSpecificResult_evalResourceName
- The name of the simulated resource, in Amazon Resource Name (ARN)
format.
$sel:evalResourceDecision:ResourceSpecificResult'
, resourceSpecificResult_evalResourceDecision
- The result of the simulation of the simulated API operation on the
resource specified in EvalResourceName
.
resourceSpecificResult_evalDecisionDetails :: Lens' ResourceSpecificResult (Maybe (HashMap Text PolicyEvaluationDecisionType)) Source #
Additional details about the results of the evaluation decision on a single resource. This parameter is returned only for cross-account simulations. This parameter explains how each policy type contributes to the resource-specific evaluation decision.
resourceSpecificResult_matchedStatements :: Lens' ResourceSpecificResult (Maybe [Statement]) Source #
A list of the statements in the input policies that determine the result for this part of the simulation. Remember that even if multiple statements allow the operation on the resource, if any statement denies that operation, then the explicit deny overrides any allow. In addition, the deny statement is the only entry included in the result.
resourceSpecificResult_missingContextValues :: Lens' ResourceSpecificResult (Maybe [Text]) Source #
A list of context keys that are required by the included input policies
but that were not provided by one of the input parameters. This list is
used when a list of ARNs is included in the ResourceArns
parameter
instead of "*". If you do not specify individual resources, by setting
ResourceArns
to "*" or by not including the ResourceArns
parameter, then any missing context values are instead included under
the EvaluationResults
section. To discover the context keys used by a
set of policies, you can call GetContextKeysForCustomPolicy or
GetContextKeysForPrincipalPolicy.
resourceSpecificResult_permissionsBoundaryDecisionDetail :: Lens' ResourceSpecificResult (Maybe PermissionsBoundaryDecisionDetail) Source #
Contains information about the effect that a permissions boundary has on a policy simulation when that boundary is applied to an IAM entity.
resourceSpecificResult_evalResourceName :: Lens' ResourceSpecificResult Text Source #
The name of the simulated resource, in Amazon Resource Name (ARN) format.
resourceSpecificResult_evalResourceDecision :: Lens' ResourceSpecificResult PolicyEvaluationDecisionType Source #
The result of the simulation of the simulated API operation on the
resource specified in EvalResourceName
.