Module Values.BucketCountByEffectivePermissionSource

Provides information about the number of S3 buckets that are publicly accessible due to a combination of permissions settings for each bucket.

Sourcetype nonrec t = {
  1. publiclyAccessible : Awso.Import.Int64.t option;
    (*

    The total number of buckets that allow the general public to have read or write access to the bucket.

    *)
  2. publiclyReadable : Awso.Import.Int64.t option;
    (*

    The total number of buckets that allow the general public to have read access to the bucket.

    *)
  3. publiclyWritable : Awso.Import.Int64.t option;
    (*

    The total number of buckets that allow the general public to have write access to the bucket.

    *)
  4. unknown : Awso.Import.Int64.t option;
    (*

    The total number of buckets that Amazon Macie wasn't able to evaluate permissions settings for. For example, the buckets' policies or a quota prevented Macie from retrieving the requisite data. Macie can't determine whether the buckets are publicly accessible.

    *)
}
Sourceval make : ?publiclyAccessible:??? -> ?publiclyReadable:??? -> ?publiclyWritable:??? -> ?unknown:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Awso.Import.Int64.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