Module Values.PublicAccessConfigurationSource

Describes public access policies that apply to the Amazon S3 bucket. For information about each of the following settings, see Blocking public access to your Amazon S3 storage in the Amazon S3 User Guide.

Sourcetype nonrec t = {
  1. publicAclAccess : PublicAccessStatus.t option;
    (*

    Indicates whether or not there is a setting that allows public access to the Amazon S3 buckets through access control lists (ACLs).

    *)
  2. publicPolicyAccess : PublicAccessStatus.t option;
    (*

    Indicates whether or not there is a setting that allows public access to the Amazon S3 bucket policy.

    *)
  3. publicAclIgnoreBehavior : PublicAclIgnoreBehavior.t option;
    (*

    Indicates whether or not there is a setting that ignores all public access control lists (ACLs) on the Amazon S3 bucket and the objects that it contains.

    *)
  4. publicBucketRestrictBehavior : PublicBucketRestrictBehavior.t option;
    (*

    Indicates whether or not there is a setting that restricts access to the bucket with specified policies.

    *)
}
Sourceval make : ?publicAclAccess:??? -> ?publicPolicyAccess:??? -> ?publicAclIgnoreBehavior:??? -> ?publicBucketRestrictBehavior:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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