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

ObjectACL

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

A value that sets the access control list (ACL) permission for objects in the S3 bucket that an S3 File Gateway puts objects into. The default value is private.

type ObjectACL =
| "private"
| "public-read"
| "public-read-write"
| "authenticated-read"
| "bucket-owner-read"
| "bucket-owner-full-control"
| "aws-exec-read"

§Type

§
"private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read" | cmnP.UnexpectedEnumValue
[src]