Interface CfnEndpoint.GcpMySQLSettingsProperty

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

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

This information includes the output format of records applied to the endpoint and details of transaction and control table data information. These settings are much the same as the settings for any MySQL-compatible endpoint. For more information, see Extra connection attributes when using MySQL as a source 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.*;
 GcpMySQLSettingsProperty gcpMySQLSettingsProperty = GcpMySQLSettingsProperty.builder()
         .afterConnectScript("afterConnectScript")
         .cleanSourceMetadataOnMismatch(false)
         .databaseName("databaseName")
         .eventsPollInterval(123)
         .maxFileSize(123)
         .parallelLoadThreads(123)
         .password("password")
         .port(123)
         .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn")
         .secretsManagerSecretId("secretsManagerSecretId")
         .serverName("serverName")
         .serverTimezone("serverTimezone")
         .username("username")
         .build();
 

See Also: