Interface CfnDataSource.SqlServerParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.SqlServerParametersProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.SqlServerParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for SQL Server.

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.quicksight.*;
 SqlServerParametersProperty sqlServerParametersProperty = SqlServerParametersProperty.builder()
         .database("database")
         .host("host")
         .port(123)
         .build();