Interface CfnDataProviderPropsMixin.MySqlSettingsProperty

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

@Stability(Stable) public static interface CfnDataProviderPropsMixin.MySqlSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a MySQL 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.*;
 MySqlSettingsProperty mySqlSettingsProperty = MySqlSettingsProperty.builder()
         .certificateArn("certificateArn")
         .port(123)
         .serverName("serverName")
         .sslMode("sslMode")
         .build();
 

See Also: