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

BackendStoragePermissions

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

Describes the read, write, and delete permissions users have against your storage S3 bucket.

interface BackendStoragePermissions {
Authenticated: AuthenticatedElement[];
UnAuthenticated?: UnAuthenticatedElement[] | null;
}

§Properties

§
Authenticated: AuthenticatedElement[]
[src]

Lists all authenticated user read, write, and delete permissions for your S3 bucket.

§
UnAuthenticated?: UnAuthenticatedElement[] | null
[src]

Lists all unauthenticated user read, write, and delete permissions for your S3 bucket.