pub type ObjectAccessURLOptions = PresignOptions;Expand description
Options for creating a host-mediated object access URL.
Aliased Type§
pub struct ObjectAccessURLOptions {
pub method: PresignMethod,
pub expires: Duration,
pub content_type: String,
pub content_disposition: String,
pub headers: BTreeMap<String, String>,
}Fields§
§method: PresignMethodHTTP method encoded into the URL.
expires: DurationRequested URL lifetime.
content_type: StringRequired content type for upload-style URLs.
content_disposition: StringRequired content disposition for upload-style URLs.
headers: BTreeMap<String, String>Additional signed headers.