[][src]Struct rusoto_dms::S3Settings

pub struct S3Settings {
    pub bucket_folder: Option<String>,
    pub bucket_name: Option<String>,
    pub compression_type: Option<String>,
    pub csv_delimiter: Option<String>,
    pub csv_row_delimiter: Option<String>,
    pub external_table_definition: Option<String>,
    pub service_access_role_arn: Option<String>,
}

Fields

bucket_folder: Option<String>

An optional parameter to set a folder name in the S3 bucket. If provided, tables are created in the path <bucketFolder>/<schema_name>/<table_name>/. If this parameter is not specified, then the path used is <schema_name>/<table_name>/.

bucket_name: Option<String>

The name of the S3 bucket.

compression_type: Option<String>

An optional parameter to use GZIP to compress the target files. Set to GZIP to compress the target files. Set to NONE (the default) or do not use to leave the files uncompressed.

csv_delimiter: Option<String>

The delimiter used to separate columns in the source files. The default is a comma.

csv_row_delimiter: Option<String>

The delimiter used to separate rows in the source files. The default is a carriage return (\n).

external_table_definition: Option<String>

The external table definition.

service_access_role_arn: Option<String>

The Amazon Resource Name (ARN) used by the service access IAM role.

Trait Implementations

impl PartialEq<S3Settings> for S3Settings[src]

impl Default for S3Settings[src]

impl Clone for S3Settings[src]

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

Performs copy-assignment from source. Read more

impl Debug for S3Settings[src]

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

impl Serialize for S3Settings[src]

Auto Trait Implementations

impl Send for S3Settings

impl Sync for S3Settings

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self