Struct rusoto_s3::CompleteMultipartUploadOutput[][src]

pub struct CompleteMultipartUploadOutput {
    pub bucket: Option<String>,
    pub e_tag: Option<String>,
    pub expiration: Option<String>,
    pub key: Option<String>,
    pub location: Option<String>,
    pub request_charged: Option<String>,
    pub ssekms_key_id: Option<String>,
    pub server_side_encryption: Option<String>,
    pub version_id: Option<String>,
}

Fields

Entity tag of the object.

If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded.

If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.

The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).

Version of the object.

Trait Implementations

impl Default for CompleteMultipartUploadOutput
[src]

Returns the "default value" for a type. Read more

impl Debug for CompleteMultipartUploadOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for CompleteMultipartUploadOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CompleteMultipartUploadOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations