interface MongoDBTargetProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Glue.CfnCrawler.MongoDBTargetProperty | 
|  Java | software.amazon.awscdk.services.glue.CfnCrawler.MongoDBTargetProperty | 
|  Python | aws_cdk.aws_glue.CfnCrawler.MongoDBTargetProperty | 
|  TypeScript | @aws-cdk/aws-glue»CfnCrawler»MongoDBTargetProperty | 
Specifies an Amazon DocumentDB or MongoDB data store to crawl.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
const mongoDBTargetProperty: glue.CfnCrawler.MongoDBTargetProperty = {
  connectionName: 'connectionName',
  path: 'path',
};
Properties
| Name | Type | Description | 
|---|---|---|
| connection | 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). | 
connectionName?
Type:
string
(optional)
The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
path?
Type:
string
(optional)
The path of the Amazon DocumentDB or MongoDB target (database/collection).
