interface DocDbSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnDataProviderPropsMixin.DocDbSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnDataProviderPropsMixin_DocDbSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnDataProviderPropsMixin.DocDbSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnDataProviderPropsMixin.DocDbSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnDataProviderPropsMixin » DocDbSettingsProperty |
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 { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const docDbSettingsProperty: dms_mixins.CfnDataProviderPropsMixin.DocDbSettingsProperty = {
certificateArn: 'certificateArn',
databaseName: 'databaseName',
port: 123,
serverName: 'serverName',
sslMode: 'sslMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | |
| database | string | The database name on the DocumentDB source endpoint. |
| port? | number | The port value for the DocumentDB source endpoint. |
| server | string | The name of the server on the DocumentDB source endpoint. |
| ssl | string |
certificateArn?
Type:
string
(optional)
databaseName?
Type:
string
(optional)
The database name on the DocumentDB source endpoint.
port?
Type:
number
(optional)
The port value for the DocumentDB source endpoint.
serverName?
Type:
string
(optional)
The name of the server on the DocumentDB source endpoint.
sslMode?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript