s3du 1.1.0

Command line utility for showing space used in AWS S3 buckets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Imports all of the components needed for cloudwatch::client
#![forbid(unsafe_code)]
#![deny(missing_docs)]

/// `BucketMetrics` handles returning the bucket names and storage types from
/// discovered CloudWatch metrics.
mod bucket_metrics;

/// Implementation of the `BucketSizer` trait for our CloudWatch `Client`.
mod bucket_sizer;

/// CloudWatch `Client`.
mod client;

pub use client::*;