Class: Aws::Glue::Types::MongoDBTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::MongoDBTarget
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies an Amazon DocumentDB or MongoDB data store to crawl.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_name ⇒ String
The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
-
#path ⇒ String
The path of the Amazon DocumentDB or MongoDB target (database/collection).
-
#scan_all ⇒ Boolean
Indicates whether to scan all the records, or to sample rows from the table.
Instance Attribute Details
#connection_name ⇒ String
The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
19548 19549 19550 19551 19552 19553 19554 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19548 class MongoDBTarget < Struct.new( :connection_name, :path, :scan_all) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path of the Amazon DocumentDB or MongoDB target (database/collection).
19548 19549 19550 19551 19552 19553 19554 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19548 class MongoDBTarget < Struct.new( :connection_name, :path, :scan_all) SENSITIVE = [] include Aws::Structure end |
#scan_all ⇒ Boolean
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
.
19548 19549 19550 19551 19552 19553 19554 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 19548 class MongoDBTarget < Struct.new( :connection_name, :path, :scan_all) SENSITIVE = [] include Aws::Structure end |