Module Values.FindingDetailsSource

Contains information about an external access or unused access finding. Only one parameter can be used in a FindingDetails object.

Sourcetype nonrec t = {
  1. internalAccessDetails : InternalAccessDetails.t option;
    (*

    The details for an internal access analyzer finding. This contains information about access patterns identified within your Amazon Web Services organization or account.

    *)
  2. externalAccessDetails : ExternalAccessDetails.t option;
    (*

    The details for an external access analyzer finding.

    *)
  3. unusedPermissionDetails : UnusedPermissionDetails.t option;
    (*

    The details for an unused access analyzer finding with an unused permission finding type.

    *)
  4. unusedIamUserAccessKeyDetails : UnusedIamUserAccessKeyDetails.t option;
    (*

    The details for an unused access analyzer finding with an unused IAM user access key finding type.

    *)
  5. unusedIamRoleDetails : UnusedIamRoleDetails.t option;
    (*

    The details for an unused access analyzer finding with an unused IAM role finding type.

    *)
  6. unusedIamUserPasswordDetails : UnusedIamUserPasswordDetails.t option;
    (*

    The details for an unused access analyzer finding with an unused IAM user password finding type.

    *)
}
Sourceval make : ?internalAccessDetails:??? -> ?externalAccessDetails:??? -> ?unusedPermissionDetails:??? -> ?unusedIamUserAccessKeyDetails:??? -> ?unusedIamRoleDetails:??? -> ?unusedIamUserPasswordDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Timestamp of Timestamp.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