Struct tsunami::Machine[][src]

pub struct Machine {
    pub ssh: Option<Session>,
    pub instance_type: String,
    pub private_ip: String,
    pub public_dns: String,
    pub public_ip: String,
}

A handle to an instance currently running as part of a tsunami.

Fields

An established SSH session to this host.

AWS EC2 instance type hosting this machine.

See https://aws.amazon.com/ec2/instance-types/ for details.

The private IP address of this host on its designated VPC.

The publicly accessible hostname of this host.

The publicly accessible IP address of this host.

Auto Trait Implementations

impl Send for Machine

impl !Sync for Machine