Module Values.BucketPublicAccessSource

Provides information about the permissions settings that determine whether an S3 bucket is publicly accessible.

Sourcetype nonrec t = {
  1. effectivePermission : EffectivePermission.t option;
    (*

    Specifies whether the bucket is publicly accessible due to the combination of permissions settings that apply to the bucket. Possible values are: NOT_PUBLIC - The bucket isn't publicly accessible. PUBLIC - The bucket is publicly accessible. UNKNOWN - Amazon Macie can't determine whether the bucket is publicly accessible.

    *)
  2. permissionConfiguration : BucketPermissionConfiguration.t option;
    (*

    The account-level and bucket-level permissions settings for the bucket.

    *)
}
Sourceval make : ?effectivePermission:??? -> ?permissionConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Boolean of bool ]) list ]) list ]) 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