Rust
Rust
S3 Create Bucket
See more Amazon S3 Examples
Demonstrates how to create a new bucket.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Insert your access key here:
http.set_aws_access_key("ABQXXABC83ABCDEFVQXX");
// Insert your secret key here:
http.set_aws_secret_key("XXXXYYYYabcdABCD12345678xxxxyyyyzzzz");
if http.s3_create_bucket("chilkattestbucket").is_err() {
println!("{}", http.last_error_text());
} else {
println!("Bucket created.");
}