Struct google_datamigration1::api::MySqlConnectionProfile
source · pub struct MySqlConnectionProfile {
pub cloud_sql_id: Option<String>,
pub host: Option<String>,
pub password: Option<String>,
pub password_set: Option<bool>,
pub port: Option<i32>,
pub ssl: Option<SslConfig>,
pub username: Option<String>,
}
Expand description
Specifies connection parameters required specifically for MySQL databases.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cloud_sql_id: Option<String>
If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.
host: Option<String>
Required. The IP or hostname of the source MySQL database.
password: Option<String>
Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.
password_set: Option<bool>
Output only. Indicates If this connection profile password is stored.
port: Option<i32>
Required. The network port of the source MySQL database.
ssl: Option<SslConfig>
SSL configuration for the destination to connect to the source database.
username: Option<String>
Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.
Trait Implementations§
source§impl Clone for MySqlConnectionProfile
impl Clone for MySqlConnectionProfile
source§fn clone(&self) -> MySqlConnectionProfile
fn clone(&self) -> MySqlConnectionProfile
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more