[][src]Struct rusoto_glue::MongoDBTarget

pub struct MongoDBTarget {
    pub connection_name: Option<String>,
    pub path: Option<String>,
    pub scan_all: Option<bool>,
}

Specifies an Amazon DocumentDB or MongoDB data store to crawl.

Fields

connection_name: Option<String>

The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.

path: Option<String>

The path of the Amazon DocumentDB or MongoDB target (database/collection).

scan_all: Option<bool>

Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table.

A value of true means to scan all records, while a value of false means to sample the records. If no value is specified, the value defaults to true.

Trait Implementations

impl Clone for MongoDBTarget[src]

impl Debug for MongoDBTarget[src]

impl Default for MongoDBTarget[src]

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

impl PartialEq<MongoDBTarget> for MongoDBTarget[src]

impl Serialize for MongoDBTarget[src]

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