[][src]Struct rusoto_s3::S3Location

pub struct S3Location {
    pub access_control_list: Option<Vec<Grant>>,
    pub bucket_name: String,
    pub canned_acl: Option<String>,
    pub encryption: Option<Encryption>,
    pub prefix: String,
    pub storage_class: Option<String>,
    pub tagging: Option<Tagging>,
    pub user_metadata: Option<Vec<MetadataEntry>>,
}

Describes an S3 location that will receive the results of the restore request.

Fields

access_control_list: Option<Vec<Grant>>

A list of grants that control access to the staged results.

bucket_name: String

The name of the bucket where the restore results will be placed.

canned_acl: Option<String>

The canned ACL to apply to the restore results.

encryption: Option<Encryption>

prefix: String

The prefix that is prepended to the restore results for this request.

storage_class: Option<String>

The class of storage used to store the restore results.

tagging: Option<Tagging>

The tag-set that is applied to the restore results.

user_metadata: Option<Vec<MetadataEntry>>

A list of metadata to store with the restore results in S3.

Trait Implementations

impl Clone for S3Location[src]

impl Default for S3Location[src]

impl PartialEq<S3Location> for S3Location[src]

impl Debug for S3Location[src]

impl StructuralPartialEq for S3Location[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self