19 releases
0.27.0 | Sep 6, 2024 |
---|---|
0.25.5 | Aug 30, 2024 |
0.25.4 | Oct 15, 2023 |
0.25.3 | Apr 10, 2023 |
0.20.0 | Mar 28, 2020 |
#1984 in Network programming
128,334 downloads per month
Used in 49 crates
(5 directly)
17KB
314 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
~215–720KB
~17K SLoC