Struct rusoto_s3::DeleteObjectRequest[][src]

pub struct DeleteObjectRequest {
    pub bucket: String,
    pub key: String,
    pub mfa: Option<String>,
    pub request_payer: Option<String>,
    pub version_id: Option<String>,
}

Fields

The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.

VersionId used to reference a specific version of the object.

Trait Implementations

impl Default for DeleteObjectRequest
[src]

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

impl Debug for DeleteObjectRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteObjectRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteObjectRequest
[src]

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

This method tests for !=.

impl PreSignedRequest for DeleteObjectRequest
[src]

https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectDELETE.html

Auto Trait Implementations