Interface CfnDataProvider.DocDbSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProvider.DocDbSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataProvider
@Stability(Stable)
public static interface CfnDataProvider.DocDbSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Provides information that defines a DocumentDB 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.*;
DocDbSettingsProperty docDbSettingsProperty = DocDbSettingsProperty.builder()
.databaseName("databaseName")
.port(123)
.serverName("serverName")
// the properties below are optional
.certificateArn("certificateArn")
.sslMode("sslMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataProvider.DocDbSettingsPropertystatic final classAn implementation forCfnDataProvider.DocDbSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
The database name on the DocumentDB source endpoint.- See Also:
-
getPort
The port value for the DocumentDB source endpoint.- See Also:
-
getServerName
The name of the server on the DocumentDB source endpoint.- See Also:
-
getCertificateArn
- See Also:
-
getSslMode
- See Also:
-
builder
-