1//! Types for representing permissions that can be granted to a presigned URL.
23/// Permissions that can be granted to a presigned URL.
4#[derive(Debug)]
5pub enum Permission {
6/// The URL can be used to read the file.
7Read,
8/// The URL can be used to write to the file.
9Write,
10}