[][src]Struct rusoto_glacier::S3Location

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

Contains information about the location in Amazon S3 where the select job results are stored.

Fields

access_control_list: Option<Vec<Grant>>

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

bucket_name: Option<String>

The name of the Amazon S3 bucket where the job results are stored.

canned_acl: Option<String>

The canned access control list (ACL) to apply to the job results.

encryption: Option<Encryption>

Contains information about the encryption used to store the job results in Amazon S3.

prefix: Option<String>

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

storage_class: Option<String>

The storage class used to store the job results.

tagging: Option<HashMap<String, String>>

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

user_metadata: Option<HashMap<String, String>>

A map of metadata to store with the job results in Amazon S3.

Trait Implementations

impl Clone for S3Location[src]

impl Debug for S3Location[src]

impl Default for S3Location[src]

impl<'de> Deserialize<'de> for S3Location[src]

impl PartialEq<S3Location> for S3Location[src]

impl Serialize for S3Location[src]

impl StructuralPartialEq for S3Location[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.