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

S3BucketConfiguration

import type { S3BucketConfiguration } from "https://aws-api.deno.dev/v0.4/services/accessanalyzer.ts?docs=full";

Proposed access control configuration for an Amazon S3 bucket. You can propose a configuration for a new Amazon S3 bucket or an existing Amazon S3 bucket that you own by specifying the Amazon S3 bucket policy, bucket ACLs, bucket BPA settings, Amazon S3 access points, and multi-region access points attached to the bucket. If the configuration is for an existing Amazon S3 bucket and you do not specify the Amazon S3 bucket policy, the access preview uses the existing policy attached to the bucket. If the access preview is for a new resource and you do not specify the Amazon S3 bucket policy, the access preview assumes a bucket without a policy. To propose deletion of an existing bucket policy, you can specify an empty string. For more information about bucket policy limits, see Bucket Policy Examples.

interface S3BucketConfiguration {
accessPoints?: {
[key: string]: S3AccessPointConfiguration | null | undefined;
}
| null;
bucketAclGrants?: S3BucketAclGrantConfiguration[] | null;
bucketPolicy?: string | null;
bucketPublicAccessBlock?: S3PublicAccessBlockConfiguration | null;
}

§Properties

§
accessPoints?: {
[key: string]: S3AccessPointConfiguration | null | undefined;
}
| null
[src]

The configuration of Amazon S3 access points or multi-region access points for the bucket. You can propose up to 10 new access points per bucket.

§
bucketAclGrants?: S3BucketAclGrantConfiguration[] | null
[src]

The proposed list of ACL grants for the Amazon S3 bucket. You can propose up to 100 ACL grants per bucket. If the proposed grant configuration is for an existing bucket, the access preview uses the proposed list of grant configurations in place of the existing grants. Otherwise, the access preview uses the existing grants for the bucket.

§
bucketPolicy?: string | null
[src]

The proposed bucket policy for the Amazon S3 bucket.

§
bucketPublicAccessBlock?: S3PublicAccessBlockConfiguration | null
[src]

The proposed block public access configuration for the Amazon S3 bucket.