Trait s3_server::S3Auth[][src]

pub trait S3Auth {
    fn get_secret_access_key<'life0, 'life1, 'async_trait>(
        &'life0 self,
        access_key_id: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<String, S3AuthError>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }
Expand description

S3 Authentication Provider

Required methods

lookup secret_access_key by access_key_id

Implementors