s3 0.1.28

A lean, modern, unofficial S3-compatible client for Rust.
Documentation
#[cfg(feature = "async")]
use std::{future::Future, pin::Pin, sync::Arc, time::Duration};

#[cfg(feature = "async")]
use s3::{Auth, Client, Credentials, CredentialsProvider, CredentialsSnapshot};

#[cfg(feature = "async")]
type ProviderFuture<'a> =
    Pin<Box<dyn Future<Output = s3::Result<CredentialsSnapshot>> + Send + 'a>>;

#[cfg(feature = "async")]
#[derive(Clone, Debug)]
struct StaticProvider {
    credentials: Credentials,
}

#[cfg(feature = "async")]
impl CredentialsProvider for StaticProvider {
    fn credentials_async(&self) -> ProviderFuture<'_> {
        let snapshot = CredentialsSnapshot::new(self.credentials.clone());
        Box::pin(async move { Ok(snapshot) })
    }

    #[cfg(feature = "blocking")]
    fn credentials_blocking(&self) -> s3::Result<CredentialsSnapshot> {
        Ok(CredentialsSnapshot::new(self.credentials.clone()))
    }
}

#[cfg(feature = "async")]
#[allow(clippy::result_large_err)]
#[tokio::main]
async fn main() -> Result<(), s3::Error> {
    let provider = StaticProvider {
        credentials: Credentials::new("TESTACCESSKEY", "TESTSECRETKEY")?,
    };

    let client = Client::builder("https://s3.example.com")?
        .region("us-east-1")
        .auth(Auth::provider(Arc::new(provider)))
        .build()?;

    let presigned = client
        .objects()
        .presign_get("my-bucket", "path/to/object.txt")
        .expires_in(Duration::from_secs(300))
        .build_async()
        .await?;

    println!("{}", presigned.url);
    Ok(())
}

#[cfg(not(feature = "async"))]
fn main() {
    eprintln!("This example requires the `async` feature (enabled by default).");
}