deepr-s3 0.1.0

deepr SDK for S3 operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use aws_sdk_s3::types::PublicAccessBlockConfiguration;
use serde::Serialize;
use tabled::Tabled;

#[derive(Tabled, Debug, Serialize)]
pub struct Bucket {
    pub name: String,
    pub created_at: String,
    pub region: String,
}

#[allow(dead_code)]
#[derive(Debug)]
pub struct BucketPolicy {
    pub name: String,
    pub public_access: PublicAccessBlockConfiguration,
}