Module Values.MySqlDataProviderSettingsSource

Provides information that defines a MySQL data provider.

Sourcetype nonrec t = {
  1. serverName : String_.t option;
    (*

    The name of the MySQL server.

    *)
  2. port : IntegerOptional.t option;
    (*

    The port value for the MySQL data provider.

    *)
  3. sslMode : DmsSslModeValue.t option;
    (*

    The SSL mode used to connect to the MySQL data provider. The default value is none.

    *)
  4. certificateArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the certificate used for SSL connection.

    *)
  5. s3Path : String_.t option;
    (*

    The path for the Amazon S3 bucket that the application uses for accessing the user-defined schema.

    *)
  6. s3AccessRoleArn : String_.t option;
    (*

    The ARN for the role the application uses to access its Amazon S3 bucket.

    *)
}
Sourceval make : ?serverName:??? -> ?port:??? -> ?sslMode:??? -> ?certificateArn:??? -> ?s3Path:??? -> ?s3AccessRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t