Module Values.ExternalAccessDetailsSource

Contains information about an external access finding.

Sourcetype nonrec t = {
  1. action : ActionList.t option;
    (*

    The action in the analyzed policy statement that an external principal has permission to use.

    *)
  2. condition : ConditionKeyMap.t option;
    (*

    The condition in the analyzed policy statement that resulted in an external access finding.

    *)
  3. isPublic : Boolean.t option;
    (*

    Specifies whether the external access finding is public.

    *)
  4. principal : PrincipalMap.t option;
    (*

    The external principal that has access to a resource within the zone of trust.

    *)
  5. sources : FindingSourceList.t option;
    (*

    The sources of the external access finding. This indicates how the access that generated the finding is granted. It is populated for Amazon S3 bucket findings.

    *)
  6. resourceControlPolicyRestriction : ResourceControlPolicyRestriction.t option;
    (*

    The type of restriction applied to the finding by the resource owner with an Organizations resource control policy (RCP). APPLICABLE: There is an RCP present in the organization but IAM Access Analyzer does not include it in the evaluation of effective permissions. For example, if s3:DeleteObject is blocked by the RCP and the restriction is APPLICABLE, then s3:DeleteObject would still be included in the list of actions for the finding. FAILED_TO_EVALUATE_RCP: There was an error evaluating the RCP. NOT_APPLICABLE: There was no RCP present in the organization, or there was no RCP applicable to the resource. For example, the resource being analyzed is an Amazon RDS snapshot and there is an RCP in the organization, but the RCP only impacts Amazon S3 buckets. APPLIED: This restriction is not currently available for external access findings.

    *)
}
Sourceval make : ?action:??? -> ?condition:??? -> ?isPublic:??? -> ?principal:??? -> ?sources:??? -> ?resourceControlPolicyRestriction:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list ]) 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