Module Values.UnusedPermissionsRecommendationStepSource

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

Sourcetype nonrec t = {
  1. recommendedAction : NonEmptyString.t option;
    (*

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

    *)
  2. existingPolicy : NonEmptyString.t option;
    (*

    The contents of the existing policy identified by ExistingPolicyId which needs to be replaced, when the RecommendedAction is CREATE_POLICY.

    *)
  3. existingPolicyId : NonEmptyString.t option;
    (*

    The ID of an existing policy to be replaced or detached.

    *)
  4. policyUpdatedAt : Timestamp.t option;
    (*

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

    *)
  5. recommendedPolicy : NonEmptyString.t option;
    (*

    The contents of the least-privileged recommended replacement for ExistingPolicyId, when the RecommendedAction is CREATE_POLICY.

    *)
}
Sourceval make : ?recommendedAction:??? -> ?existingPolicy:??? -> ?existingPolicyId:??? -> ?policyUpdatedAt:??? -> ?recommendedPolicy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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