#s3 #aws-region #aws #wasabi #minio #r2

zitane-aws-region

Tiny Rust library for working with Amazon AWS regions

1 unstable release

0.26.0 Jul 15, 2023

#6 in #r2

36 downloads per month
Used in zitane-s3-async

MIT license

14KB
247 lines

AWS S3 region identifier, passing in custom values is also possible, in that case it is up to you to pass a valid endpoint, otherwise boom will happen :)

Example

use std::str::FromStr;
use awsregion::Region;

// Parse from a string
let region: Region = "us-east-1".parse().unwrap();
// Choose region directly
let region = Region::EuWest2;

// Custom region requires valid region name and endpoint
let region_name = "nl-ams".to_string();
let endpoint = "https://s3.nl-ams.scw.cloud".to_string();
let region = Region::Custom { region: region_name, endpoint };

Dependencies

~0.3–0.9MB
~20K SLoC