[][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>,
}

Provides information that defines an Amazon Redshift endpoint.

Fields

accept_any_date: Option<bool>

A value that indicates to allow 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 (the default).

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

after_connect_script: Option<String>

Code to run after connecting. This parameter should contain the code itself, not the name of a file containing the code.

bucket_folder: Option<String>

The location where the comma-separated value (.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>

A value that 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) that you are working with.

date_format: Option<String>

The date format that you are using. Valid values are auto (case-sensitive), your date format string enclosed in quotes, or NULL. If this parameter is left unset (NULL), it defaults to a format of 'YYYY-MM-DD'. Using auto recognizes most strings, even some that aren't 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>

A value that 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 that you want to use for your data. This encryption type is part of the endpoint settings or the extra connections attributes for Amazon S3. You can choose either SSE_S3 (the default) or SSE_KMS. To use SSE_S3, create an AWS Identity and Access Management (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>

The number of threads used to upload a single file. This parameter accepts a value from 1 through 64. It defaults to 10.

load_timeout: Option<i64>

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

max_file_size: Option<i64>

The maximum size (in KB) of any .csv file used to transfer data to Amazon Redshift. This accepts a value from 1 through 1,048,576. It defaults to 32,768 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>

A value that specifies to remove 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>

A value that specifies to replaces the invalid characters specified in ReplaceInvalidChars, substituting the specified characters instead. The default is "?".

replace_invalid_chars: Option<String>

A list of characters that 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>

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

service_access_role_arn: Option<String>

The Amazon Resource Name (ARN) of the IAM role that has access to the Amazon Redshift service.

time_format: Option<String>

The time format that 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 aren't supported when you use a time format string.

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

trim_blanks: Option<bool>

A value that specifies to remove 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>

A value that specifies to truncate data in columns to the appropriate number of characters, so that the data fits in the column. This parameter 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 through 2,048. The default is 1,024. Use this setting to tune performance.

Trait Implementations

impl Clone for RedshiftSettings[src]

impl Debug for RedshiftSettings[src]

impl Default for RedshiftSettings[src]

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

impl PartialEq<RedshiftSettings> for RedshiftSettings[src]

impl Serialize for RedshiftSettings[src]

impl StructuralPartialEq for RedshiftSettings[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.