Class: Aws::Glue::Types::MongoDBTarget
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::MongoDBTarget
 
- Includes:
- Structure
- Defined in:
- 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.
| 19578 19579 19580 19581 19582 19583 19584 | # File 'lib/aws-sdk-glue/types.rb', line 19578 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).
| 19578 19579 19580 19581 19582 19583 19584 | # File 'lib/aws-sdk-glue/types.rb', line 19578 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`.
| 19578 19579 19580 19581 19582 19583 19584 | # File 'lib/aws-sdk-glue/types.rb', line 19578 class MongoDBTarget < Struct.new( :connection_name, :path, :scan_all) SENSITIVE = [] include Aws::Structure end |