Struct aws_sdk_glue::model::MongoDbTarget
source · #[non_exhaustive]pub struct MongoDbTarget { /* private fields */ }Expand description
Specifies an Amazon DocumentDB or MongoDB data store to crawl.
Implementations§
source§impl MongoDbTarget
impl MongoDbTarget
sourcepub fn connection_name(&self) -> Option<&str>
pub fn connection_name(&self) -> Option<&str>
The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&str>
The path of the Amazon DocumentDB or MongoDB target (database/collection).
sourcepub fn scan_all(&self) -> Option<bool>
pub fn scan_all(&self) -> 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.
source§impl MongoDbTarget
impl MongoDbTarget
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MongoDbTarget.
Trait Implementations§
source§impl Clone for MongoDbTarget
impl Clone for MongoDbTarget
source§fn clone(&self) -> MongoDbTarget
fn clone(&self) -> MongoDbTarget
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for MongoDbTarget
impl Debug for MongoDbTarget
source§impl PartialEq<MongoDbTarget> for MongoDbTarget
impl PartialEq<MongoDbTarget> for MongoDbTarget
source§fn eq(&self, other: &MongoDbTarget) -> bool
fn eq(&self, other: &MongoDbTarget) -> bool
This method tests for
self and other values to be equal, and is used
by ==.