Module Values.AwsS3AccountPublicAccessBlockDetailsSource

provides information about the Amazon S3 Public Access Block configuration for accounts.

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

    Indicates whether to reject calls to update an S3 bucket if the calls include a public access control list (ACL).

    *)
  2. blockPublicPolicy : Boolean.t option;
    (*

    Indicates whether to reject calls to update the access policy for an S3 bucket or access point if the policy allows public access.

    *)
  3. ignorePublicAcls : Boolean.t option;
    (*

    Indicates whether Amazon S3 ignores public ACLs that are associated with an S3 bucket.

    *)
  4. restrictPublicBuckets : Boolean.t option;
    (*

    Indicates whether to restrict access to an access point or S3 bucket that has a public policy to only Amazon Web Services service principals and authorized users within the S3 bucket owner's account.

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