Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BlockPublicAccess

import type { BlockPublicAccess } from "https://aws-api.deno.dev/v0.3/services/macie2.ts?docs=full";

Provides information about the block public access settings for an S3 bucket. These settings can apply to a bucket at the account level 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.

interface BlockPublicAccess {
blockPublicAcls?: boolean | null;
blockPublicPolicy?: boolean | null;
ignorePublicAcls?: boolean | null;
restrictPublicBuckets?: boolean | null;
}

§Properties

§
blockPublicAcls?: boolean | null
[src]

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

§
blockPublicPolicy?: boolean | null
[src]

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

§
ignorePublicAcls?: boolean | null
[src]

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

§
restrictPublicBuckets?: boolean | null
[src]

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