pub struct ForwardSshTunnelConnectivity {
pub hostname: Option<String>,
pub password: Option<String>,
pub port: Option<i32>,
pub private_key: Option<String>,
pub username: Option<String>,
}Expand description
Forward SSH Tunnel connectivity.
This type is not used in any activity, and only used as part of another schema.
Fields§
§hostname: Option<String>Required. Hostname for the SSH tunnel.
password: Option<String>Input only. SSH password.
port: Option<i32>Port for the SSH tunnel, default value is 22.
private_key: Option<String>Input only. SSH private key.
username: Option<String>Required. Username for the SSH tunnel.
Trait Implementations§
source§impl Clone for ForwardSshTunnelConnectivity
impl Clone for ForwardSshTunnelConnectivity
source§fn clone(&self) -> ForwardSshTunnelConnectivity
fn clone(&self) -> ForwardSshTunnelConnectivity
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ForwardSshTunnelConnectivity
impl Debug for ForwardSshTunnelConnectivity
source§impl Default for ForwardSshTunnelConnectivity
impl Default for ForwardSshTunnelConnectivity
source§fn default() -> ForwardSshTunnelConnectivity
fn default() -> ForwardSshTunnelConnectivity
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ForwardSshTunnelConnectivity
impl<'de> Deserialize<'de> for ForwardSshTunnelConnectivity
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more