Interface CfnDataSource.MySqlParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.MySqlParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters for MySQL.

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

See Also: