Interface CfnDataProvider.MongoDbSettingsProperty

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

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

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()
         .port(123)
         .serverName("serverName")
         // the properties below are optional
         .authMechanism("authMechanism")
         .authSource("authSource")
         .authType("authType")
         .certificateArn("certificateArn")
         .databaseName("databaseName")
         .sslMode("sslMode")
         .build();
 

See Also: