Module Values.BlockPublicAccessSource

Provides information about the block public access settings for an S3 bucket. These settings can apply to a bucket at the account or bucket level. For detailed information about each setting, see Blocking public access to your Amazon S3 storage in the Amazon Simple Storage Service User Guide.

Sourcetype nonrec t = {
  1. blockPublicAcls : bool option;
    (*

    Specifies whether Amazon S3 blocks public access control lists (ACLs) for the bucket and objects in the bucket.

    *)
  2. blockPublicPolicy : bool option;
    (*

    Specifies whether Amazon S3 blocks public bucket policies for the bucket.

    *)
  3. ignorePublicAcls : bool option;
    (*

    Specifies whether Amazon S3 ignores public ACLs for the bucket and objects in the bucket.

    *)
  4. restrictPublicBuckets : bool option;
    (*

    Specifies whether Amazon S3 restricts public bucket policies for the bucket.

    *)
}
Sourceval make : ?blockPublicAcls:??? -> ?blockPublicPolicy:??? -> ?ignorePublicAcls:??? -> ?restrictPublicBuckets:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool ]) 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