Interface CfnEndpoint.MongoDbSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpoint.MongoDbSettingsProperty.Jsii$Proxy
Enclosing class:
CfnEndpoint

@Stability(Stable) public static interface CfnEndpoint.MongoDbSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a MongoDB endpoint.

This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For more information about other available settings, see Endpoint configuration settings when using MongoDB as a source for AWS DMS in the AWS Database Migration Service User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.dms.*;
 MongoDbSettingsProperty mongoDbSettingsProperty = MongoDbSettingsProperty.builder()
         .authMechanism("authMechanism")
         .authSource("authSource")
         .authType("authType")
         .databaseName("databaseName")
         .docsToInvestigate("docsToInvestigate")
         .extractDocId("extractDocId")
         .nestingLevel("nestingLevel")
         .password("password")
         .port(123)
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .serverName("serverName")
         .username("username")
         .build();
 

See Also: