[][src]Struct rusoto_s3::UploadPartCopyOutput

pub struct UploadPartCopyOutput {
    pub copy_part_result: Option<CopyPartResult>,
    pub copy_source_version_id: Option<String>,
    pub request_charged: Option<String>,
    pub sse_customer_algorithm: Option<String>,
    pub sse_customer_key_md5: Option<String>,
    pub ssekms_key_id: Option<String>,
    pub server_side_encryption: Option<String>,
}

Fields

copy_part_result: Option<CopyPartResult>

copy_source_version_id: Option<String>

The version of the source object that was copied, if you have enabled versioning on the source bucket.

request_charged: Option<String>sse_customer_algorithm: Option<String>

If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

sse_customer_key_md5: Option<String>

If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.

ssekms_key_id: Option<String>

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

server_side_encryption: Option<String>

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

Trait Implementations

impl PartialEq<UploadPartCopyOutput> for UploadPartCopyOutput[src]

impl Default for UploadPartCopyOutput[src]

impl Clone for UploadPartCopyOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UploadPartCopyOutput[src]

Auto Trait Implementations

impl Send for UploadPartCopyOutput

impl Sync for UploadPartCopyOutput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self