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

BucketLevelPermissions

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

Provides information about the bucket-level permissions settings for an S3 bucket.

interface BucketLevelPermissions {
accessControlList?: AccessControlList | null;
blockPublicAccess?: BlockPublicAccess | null;
bucketPolicy?: BucketPolicy | null;
}

§Properties

§
accessControlList?: AccessControlList | null
[src]

The permissions settings of the access control list (ACL) for the bucket. This value is null if an ACL hasn't been defined for the bucket.

§
blockPublicAccess?: BlockPublicAccess | null
[src]

The block public access settings for the bucket.

§
bucketPolicy?: BucketPolicy | null
[src]

The permissions settings of the bucket policy for the bucket. This value is null if a bucket policy hasn't been defined for the bucket.