[][src]Struct rusoto_dms::RedshiftSettings

pub struct RedshiftSettings {
    pub accept_any_date: Option<bool>,
    pub after_connect_script: Option<String>,
    pub bucket_folder: Option<String>,
    pub bucket_name: Option<String>,
    pub connection_timeout: Option<i64>,
    pub database_name: Option<String>,
    pub date_format: Option<String>,
    pub empty_as_null: Option<bool>,
    pub encryption_mode: Option<String>,
    pub file_transfer_upload_streams: Option<i64>,
    pub load_timeout: Option<i64>,
    pub max_file_size: Option<i64>,
    pub password: Option<String>,
    pub port: Option<i64>,
    pub remove_quotes: Option<bool>,
    pub replace_chars: Option<String>,
    pub replace_invalid_chars: Option<String>,
    pub server_name: Option<String>,
    pub server_side_encryption_kms_key_id: Option<String>,
    pub service_access_role_arn: Option<String>,
    pub time_format: Option<String>,
    pub trim_blanks: Option<bool>,
    pub truncate_columns: Option<bool>,
    pub username: Option<String>,
    pub write_buffer_size: Option<i64>,
}

Fields

accept_any_date: Option<bool>

Allows any date format, including invalid formats such as 00/00/00 00:00:00, to be loaded without generating an error. You can choose TRUE or FALSE (default).

This parameter applies only to TIMESTAMP and DATE columns. Always use ACCEPTANYDATE with the DATEFORMAT parameter. If the date format for the data does not match the DATEFORMAT specification, Amazon Redshift inserts a NULL value into that field.

after_connect_script: Option<String>

Code to run after connecting. This should be the code, not a filename.

bucket_folder: Option<String>

The location where the CSV files are stored before being uploaded to the S3 bucket.

bucket_name: Option<String>

The name of the S3 bucket you want to use

connection_timeout: Option<i64>

Sets the amount of time to wait (in milliseconds) before timing out, beginning from when you initially establish a connection.

database_name: Option<String>

The name of the Amazon Redshift data warehouse (service) you are working with.

date_format: Option<String>

The date format you are using. Valid values are auto (case-sensitive), your date format string enclosed in quotes, or NULL. If this is left unset (NULL), it defaults to a format of 'YYYY-MM-DD'. Using auto recognizes most strings, even some that are not supported when you use a date format string.

If your date and time values use formats different from each other, set this to auto.

empty_as_null: Option<bool>

Specifies whether AWS DMS should migrate empty CHAR and VARCHAR fields as NULL. A value of TRUE sets empty CHAR and VARCHAR fields to null. The default is FALSE.

encryption_mode: Option<String>

The type of server side encryption you want to use for your data. This is part of the endpoint settings or the extra connections attributes for Amazon S3. You can choose either SSE_S3 (default) or SSE_KMS. To use SSE_S3, create an IAM role with a policy that allows "arn:aws:s3:::*" to use the following actions: "s3:PutObject", "s3:ListBucket".

file_transfer_upload_streams: Option<i64>

Specifies the number of threads used to upload a single file. This accepts a value between 1 and 64. It defaults to 10.

load_timeout: Option<i64>

Sets the amount of time to wait (in milliseconds) before timing out, beginning from when you begin loading.

max_file_size: Option<i64>

Specifies the maximum size (in KB) of any CSV file used to transfer data to Amazon Redshift. This accepts a value between 1 and 1048576. It defaults to 32768 KB (32 MB).

password: Option<String>

The password for the user named in the username property.

port: Option<i64>

The port number for Amazon Redshift. The default value is 5439.

remove_quotes: Option<bool>

Removes surrounding quotation marks from strings in the incoming data. All characters within the quotation marks, including delimiters, are retained. Choose TRUE to remove quotation marks. The default is FALSE.

replace_chars: Option<String>

Replaces invalid characters specified in ReplaceInvalidChars, substituting the specified value instead. The default is "?".

replace_invalid_chars: Option<String>

A list of chars you want to replace. Use with ReplaceChars.

server_name: Option<String>

The name of the Amazon Redshift cluster you are using.

server_side_encryption_kms_key_id: Option<String>

If you are using SSE_KMS for the EncryptionMode, provide the KMS Key ID. The key you use needs an attached policy that enables IAM user permissions and allows use of the key.

service_access_role_arn: Option<String>

The ARN of the role that has access to the Redshift service.

time_format: Option<String>

The time format you want to use. Valid values are auto (case-sensitive), 'timeformat_string', 'epochsecs', or 'epochmillisecs'. It defaults to 10. Using auto recognizes most strings, even some that are not supported when you use a time format string.

If your date and time values use formats different from each other, set this to auto.

trim_blanks: Option<bool>

Removes the trailing white space characters from a VARCHAR string. This parameter applies only to columns with a VARCHAR data type. Choose TRUE to remove unneeded white space. The default is FALSE.

truncate_columns: Option<bool>

Truncates data in columns to the appropriate number of characters, so that it fits in the column. Applies only to columns with a VARCHAR or CHAR data type, and rows with a size of 4 MB or less. Choose TRUE to truncate data. The default is FALSE.

username: Option<String>

An Amazon Redshift user name for a registered user.

write_buffer_size: Option<i64>

The size of the write buffer to use in rows. Valid values range from 1 to 2048. Defaults to 1024. Use this setting to tune performance.

Trait Implementations

impl PartialEq<RedshiftSettings> for RedshiftSettings[src]

impl Default for RedshiftSettings[src]

impl Clone for RedshiftSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for RedshiftSettings[src]

impl Serialize for RedshiftSettings[src]

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

Auto Trait Implementations

impl Send for RedshiftSettings

impl Sync for RedshiftSettings

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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