Interface CfnDataProvider.MicrosoftSqlServerSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProvider.MicrosoftSqlServerSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataProvider
@Stability(Stable)
public static interface CfnDataProvider.MicrosoftSqlServerSettingsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dms.*; MicrosoftSqlServerSettingsProperty microsoftSqlServerSettingsProperty = MicrosoftSqlServerSettingsProperty.builder() .databaseName("databaseName") .port(123) .serverName("serverName") .sslMode("sslMode") // the properties below are optional .certificateArn("certificateArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataProvider.MicrosoftSqlServerSettingsProperty
static final class
An implementation forCfnDataProvider.MicrosoftSqlServerSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabaseName
Database name for the endpoint.- See Also:
-
getPort
Endpoint TCP port.- See Also:
-
getServerName
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.- See Also:
-
getSslMode
- See Also:
-
getCertificateArn
- See Also:
-
builder
-