[][src]Struct rusoto_datasync::CreateLocationS3Request

pub struct CreateLocationS3Request {
    pub s3_bucket_arn: String,
    pub s3_config: S3Config,
    pub s3_storage_class: Option<String>,
    pub subdirectory: Option<String>,
    pub tags: Option<Vec<TagListEntry>>,
}

CreateLocationS3Request

Fields

s3_bucket_arn: String

The Amazon Resource Name (ARN) of the Amazon S3 bucket.

s3_config: S3Configs3_storage_class: Option<String>

The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.

subdirectory: Option<String>

A subdirectory in the Amazon S3 bucket. This subdirectory in Amazon S3 is used to read data from the S3 source location or write data to the S3 destination.

tags: Option<Vec<TagListEntry>>

The key-value pair that represents the tag that you want to add to the location. The value can be an empty string. We recommend using tags to name your resources.

Trait Implementations

impl Clone for CreateLocationS3Request[src]

impl Debug for CreateLocationS3Request[src]

impl Default for CreateLocationS3Request[src]

impl PartialEq<CreateLocationS3Request> for CreateLocationS3Request[src]

impl Serialize for CreateLocationS3Request[src]

impl StructuralPartialEq for CreateLocationS3Request[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> From<T> 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.