interface MongoDBTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnCrawlerPropsMixin.MongoDBTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnCrawlerPropsMixin_MongoDBTargetProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnCrawlerPropsMixin.MongoDBTargetProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnCrawlerPropsMixin.MongoDBTargetProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnCrawlerPropsMixin » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const mongoDBTargetProperty: glue.CfnCrawlerPropsMixin.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).

.NET
Go
Java
Python
TypeScript