[][src]Struct rusoto_dms::MongoDbSettings

pub struct MongoDbSettings {
    pub auth_mechanism: Option<String>,
    pub auth_source: Option<String>,
    pub auth_type: Option<String>,
    pub database_name: Option<String>,
    pub docs_to_investigate: Option<String>,
    pub extract_doc_id: Option<String>,
    pub kms_key_id: Option<String>,
    pub nesting_level: Option<String>,
    pub password: Option<String>,
    pub port: Option<i64>,
    pub server_name: Option<String>,
    pub username: Option<String>,
}

Provides information that defines a MongoDB endpoint.

Fields

auth_mechanism: Option<String>

The authentication mechanism you use to access the MongoDB source endpoint.

For the default value, in MongoDB version 2.x, "default" is "mongodb_cr". For MongoDB version 3.x or later, "default" is "scram_sha_1". This setting isn't used when AuthType is set to "no".

auth_source: Option<String>

The MongoDB database name. This setting isn't used when AuthType is set to "no".

The default is "admin".

auth_type: Option<String>

The authentication type you use to access the MongoDB source endpoint.

When when set to "no", user name and password parameters are not used and can be empty.

database_name: Option<String>

The database name on the MongoDB source endpoint.

docs_to_investigate: Option<String>

Indicates the number of documents to preview to determine the document organization. Use this setting when NestingLevel is set to "one".

Must be a positive value greater than 0. Default value is 1000.

extract_doc_id: Option<String>

Specifies the document ID. Use this setting when NestingLevel is set to "none".

Default value is "false".

kms_key_id: Option<String>

The AWS KMS key identifier that is used to encrypt the content on the replication instance. If you don't specify a value for the KmsKeyId parameter, then AWS DMS uses your default encryption key. AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS Region.

nesting_level: Option<String>

Specifies either document or table mode.

Default value is "none". Specify "none" to use document mode. Specify "one" to use table mode.

password: Option<String>

The password for the user account you use to access the MongoDB source endpoint.

port: Option<i64>

The port value for the MongoDB source endpoint.

server_name: Option<String>

The name of the server on the MongoDB source endpoint.

username: Option<String>

The user name you use to access the MongoDB source endpoint.

Trait Implementations

impl Clone for MongoDbSettings[src]

impl Debug for MongoDbSettings[src]

impl Default for MongoDbSettings[src]

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

impl PartialEq<MongoDbSettings> for MongoDbSettings[src]

impl Serialize for MongoDbSettings[src]

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