interface MicrosoftSqlServerSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnDataProviderPropsMixin_MicrosoftSqlServerSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnDataProviderPropsMixin » MicrosoftSqlServerSettingsProperty |
Provides information that defines a Microsoft SQL Server 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 microsoftSqlServerSettingsProperty: dms_mixins.CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty = {
certificateArn: 'certificateArn',
databaseName: 'databaseName',
port: 123,
serverName: 'serverName',
sslMode: 'sslMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | |
| database | string | Database name for the endpoint. |
| port? | number | Endpoint TCP port. |
| server | string | Fully qualified domain name of the endpoint. |
| ssl | string |
certificateArn?
Type:
string
(optional)
databaseName?
Type:
string
(optional)
Database name for the endpoint.
port?
Type:
number
(optional)
Endpoint TCP port.
serverName?
Type:
string
(optional)
Fully qualified domain name of the endpoint.
For an Amazon RDS SQL Server instance, this is the output of DescribeDBInstances , in the [Endpoint](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_Endpoint.html) .Address field.
sslMode?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript