Values.UnusedPermissionsRecommendationStepSourceContains information about the action to take for a policy in an unused permissions finding.
type nonrec t = {recommendedAction : NonEmptyString.t option;A recommendation of whether to create or detach a policy for an unused permissions finding.
*)existingPolicy : NonEmptyString.t option;The contents of the existing policy identified by ExistingPolicyId which needs to be replaced, when the RecommendedAction is CREATE_POLICY.
*)existingPolicyId : NonEmptyString.t option;The ID of an existing policy to be replaced or detached.
*)policyUpdatedAt : Timestamp.t option;The time at which the existing policy for the unused permissions finding was last updated.
*)recommendedPolicy : NonEmptyString.t option;The contents of the least-privileged recommended replacement for ExistingPolicyId, when the RecommendedAction is CREATE_POLICY.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of NonEmptyString.t | `Timestamp of Timestamp.t ])
list ]