Interface CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnDataProviderPropsMixin
@Stability(Stable)
public static interface CfnDataProviderPropsMixin.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.cfnpropertymixins.services.dms.*;
MicrosoftSqlServerSettingsProperty microsoftSqlServerSettingsProperty = MicrosoftSqlServerSettingsProperty.builder()
.certificateArn("certificateArn")
.databaseName("databaseName")
.port(123)
.serverName("serverName")
.sslMode("sslMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateArn
- See Also:
-
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) .Addressfield.- See Also:
-
getSslMode
- See Also:
-
builder
@Stability(Stable) static CfnDataProviderPropsMixin.MicrosoftSqlServerSettingsProperty.Builder builder()
-