Module Values.UnusedPermissionsRecommendedStepSource

Contains information about the action to take for a policy in an unused permissions finding.

Sourcetype nonrec t = {
  1. policyUpdatedAt : Timestamp.t option;
    (*

    The time at which the existing policy for the unused permissions finding was last updated.

    *)
  2. recommendedAction : RecommendedRemediationAction.t option;
    (*

    A recommendation of whether to create or detach a policy for an unused permissions finding.

    *)
  3. recommendedPolicy : String_.t option;
    (*

    If the recommended action for the unused permissions finding is to replace the existing policy, the contents of the recommended policy to replace the policy specified in the existingPolicyId field.

    *)
  4. existingPolicyId : String_.t option;
    (*

    If the recommended action for the unused permissions finding is to detach a policy, the ID of an existing policy to be detached.

    *)
}
Sourceval make : ?policyUpdatedAt:??? -> ?recommendedAction:??? -> ?recommendedPolicy:??? -> ?existingPolicyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t