Interface CfnEndpoint.MySqlSettingsProperty

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

@Stability(Stable) public static interface CfnEndpoint.MySqlSettingsProperty extends software.amazon.jsii.JsiiSerializable
Provides information that defines a MySQL endpoint.

This information includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Extra connection attributes when using MySQL as a source for AWS DMS and Extra connection attributes when using a MySQL-compatible database as a target for AWS DMS in the AWS Database Migration Service User Guide .

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.*;
 MySqlSettingsProperty mySqlSettingsProperty = MySqlSettingsProperty.builder()
         .afterConnectScript("afterConnectScript")
         .cleanSourceMetadataOnMismatch(false)
         .eventsPollInterval(123)
         .maxFileSize(123)
         .parallelLoadThreads(123)
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .serverTimezone("serverTimezone")
         .targetDbType("targetDbType")
         .build();
 

See Also: