Class CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty
Provides information that defines a Microsoft SQL Server endpoint.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DMS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty : CfnDataProviderPropsMixin.IMicrosoftSqlServerSettingsProperty
Syntax (vb)
Public Class CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty Implements CfnDataProviderPropsMixin.IMicrosoftSqlServerSettingsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DMS;
var microsoftSqlServerSettingsProperty = new MicrosoftSqlServerSettingsProperty {
CertificateArn = "certificateArn",
DatabaseName = "databaseName",
Port = 123,
ServerName = "serverName",
SslMode = "sslMode"
};
Synopsis
Constructors
| MicrosoftSqlServerSettingsProperty() | Provides information that defines a Microsoft SQL Server endpoint. |
Properties
| CertificateArn | Provides information that defines a Microsoft SQL Server endpoint. |
| DatabaseName | Database name for the endpoint. |
| Port | Endpoint TCP port. |
| ServerName | Fully qualified domain name of the endpoint. |
| SslMode | Provides information that defines a Microsoft SQL Server endpoint. |
Constructors
MicrosoftSqlServerSettingsProperty()
Provides information that defines a Microsoft SQL Server endpoint.
public MicrosoftSqlServerSettingsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DMS;
var microsoftSqlServerSettingsProperty = new MicrosoftSqlServerSettingsProperty {
CertificateArn = "certificateArn",
DatabaseName = "databaseName",
Port = 123,
ServerName = "serverName",
SslMode = "sslMode"
};
Properties
CertificateArn
Provides information that defines a Microsoft SQL Server endpoint.
public string? CertificateArn { get; set; }
Property Value
Remarks
DatabaseName
Database name for the endpoint.
public string? DatabaseName { get; set; }
Property Value
Remarks
Port
Endpoint TCP port.
public double? Port { get; set; }
Property Value
Remarks
ServerName
Fully qualified domain name of the endpoint.
public string? ServerName { get; set; }
Property Value
Remarks
For an Amazon RDS SQL Server instance, this is the output of DescribeDBInstances , in the Endpoint .Address field.
SslMode
Provides information that defines a Microsoft SQL Server endpoint.
public string? SslMode { get; set; }