Sample code for 30+ languages & platforms
Rust

Read S3 Object Metadata of File Already Uploaded to S3

See more Amazon S3 Examples

Demonstrates how to retrieve the metadata from an S3 object.

The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you are interested only in an object's metadata. To use HEAD, you must have READ access to the object.

A HEAD request has the same options as a GET operation on an object. The response is identical to the GET response except that there is no response body.

Chilkat Rust Downloads

Rust
// This requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let http = chilkat::Http::new();

// Insert your AWS keys here:
http.set_aws_access_key("AWS_ACCESS_KEY");
http.set_aws_secret_key("AWS_SECRET_KEY");

let bucket_name = "chilkat.ocean".to_string();
let object_name = "seahorse.jpg".to_string();

// User-defined metadata are name/value pairs, and are returned in the HTTP response header.
// Metadata header names begin with "x-amz-meta-" to distinguish them from other HTTP headers.
// Note that Amazon S3 stores user-defined metadata keys in lowercase.

// A HEAD request can be sent to return the response header without the response body.
// The S3_FileExists method sends a HEAD request.
// It can be used to get the response header.
let retval = http.s3_file_exists(&bucket_name, &object_name);
if retval < 0 {
    println!("Failed to check for the S3 object existence");
    println!("{}", http.last_error_text());
    return;
}

if retval == 0 {
    println!("The S3 object does not exist.");
    return;
}

// The response header is available in the LastResponseHeader property.
let response_header = http.last_response_header();
println!("Response header:");
println!("{}", response_header);
println!("--");

// Here is an example response header:

// 	x-amz-id-2: uS4Flff04M8x5YWajU231TP0ClBL19mMhuyfU5ZVQd6NsUHXVhHK+H3b0sjxY98Fujet1ejhyzk=
// 	x-amz-request-id: 27950009AA8E68AA
// 	Date: Mon, 23 Jan 2017 20:12:58 GMT
// 	Last-Modified: Fri, 20 Jan 2017 00:22:57 GMT
// 	ETag: "a8551f0a5437f43a796fca7623ee9232"
// 	x-amz-meta-species: big-belly seahorse
// 	x-amz-meta-genus: Hippocampus
// 	x-amz-meta-habitat: shallow tropical and temperate waters
// 	Accept-Ranges: bytes
// 	Content-Type: image/jpg
// 	Content-Length: 24388
// 	Server: AmazonS3

// HTTP requests and responses are MIME.  For easy parsing, the response header
// can be loaded into a Chilkat MIME object
let mime = chilkat::Mime::new();

let _ = mime.load_mime(&response_header);

// Examine the metadata values:
println!("x-amz-meta-species: {}", mime.get_header_field("x-amz-meta-species").unwrap_or_default());
println!("x-amz-meta-genus: {}", mime.get_header_field("x-amz-meta-genus").unwrap_or_default());
println!("x-amz-meta-habitat: {}", mime.get_header_field("x-amz-meta-habitat").unwrap_or_default());
println!("--");

// It is possible to iterate over the header fields to find all x-amz-meta* headers
let mut i = 0;
let num_headers = mime.num_header_fields();
let sb_name = chilkat::StringBuilder::new();
while i < num_headers {
    let _ = sb_name.set_string(&mime.get_header_field_name(i).unwrap_or_default());
    if sb_name.starts_with("x-amz-meta", false) {
        println!("{}: {}", sb_name.get_as_string().unwrap_or_default(), mime.get_header_field_value(i).unwrap_or_default());
    }

    i = i + 1;
}

// The output:

// 	x-amz-meta-species: big-belly seahorse
// 	x-amz-meta-genus: Hippocampus
// 	x-amz-meta-habitat: shallow tropical and temperate waters