[−][src]Struct rusoto_dms::MongoDbSettings
Fields
auth_mechanism: Option<String>
The authentication mechanism you use to access the MongoDB source endpoint.
Valid values: DEFAULT, MONGODB_CR, SCRAM_SHA_1
DEFAULT – For MongoDB version 2.x, use MONGODB_CR. For MongoDB version 3.x, use SCRAM_SHA_1. This attribute is not used when authType=No.
auth_source: Option<String>
The MongoDB database name. This attribute is not used when authType=NO
.
The default is admin.
auth_type: Option<String>
The authentication type you use to access the MongoDB source endpoint.
Valid values: NO, PASSWORD
When NO is selected, 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 attribute 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 attribute 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.
Valid values: NONE, ONE
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 PartialEq<MongoDbSettings> for MongoDbSettings
[src]
fn eq(&self, other: &MongoDbSettings) -> bool
[src]
fn ne(&self, other: &MongoDbSettings) -> bool
[src]
impl Default for MongoDbSettings
[src]
fn default() -> MongoDbSettings
[src]
impl Clone for MongoDbSettings
[src]
fn clone(&self) -> MongoDbSettings
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for MongoDbSettings
[src]
impl Serialize for MongoDbSettings
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for MongoDbSettings
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for MongoDbSettings
impl Sync for MongoDbSettings
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self