Class: Aws::Glue::Types::MongoDBTarget

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#connection_nameString

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

Returns:

  • (String)


16115
16116
16117
16118
16119
16120
16121
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16115

class MongoDBTarget < Struct.new(
  :connection_name,
  :path,
  :scan_all)
  SENSITIVE = []
  include Aws::Structure
end

#pathString

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

Returns:

  • (String)


16115
16116
16117
16118
16119
16120
16121
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16115

class MongoDBTarget < Struct.new(
  :connection_name,
  :path,
  :scan_all)
  SENSITIVE = []
  include Aws::Structure
end

#scan_allBoolean

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.

Returns:

  • (Boolean)


16115
16116
16117
16118
16119
16120
16121
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16115

class MongoDBTarget < Struct.new(
  :connection_name,
  :path,
  :scan_all)
  SENSITIVE = []
  include Aws::Structure
end