Struct rusoto_lightsail::InstanceAccessDetails [] [src]

pub struct InstanceAccessDetails {
    pub cert_key: Option<String>,
    pub expires_at: Option<IsoDate>,
    pub instance_name: Option<ResourceName>,
    pub ip_address: Option<IpAddress>,
    pub password: Option<String>,
    pub private_key: Option<String>,
    pub protocol: Option<InstanceAccessProtocol>,
    pub username: Option<String>,
}

The parameters for gaining temporary access to one of your Amazon Lightsail instances.

Fields

For SSH access, the public key to use when accessing your instance For OpenSSH clients (e.g., command line SSH), you should save this value to tempkey-cert.pub.

For SSH access, the date on which the temporary keys expire.

The name of this Amazon Lightsail instance.

The public IP address of the Amazon Lightsail instance.

For RDP access, the temporary password of the Amazon EC2 instance.

For SSH access, the temporary private key. For OpenSSH clients (e.g., command line SSH), you should save this value to tempkey).

The protocol for these Amazon Lightsail instance access details.

The user name to use when logging in to the Amazon Lightsail instance.

Trait Implementations

impl Default for InstanceAccessDetails
[src]

Returns the "default value" for a type. Read more

impl Debug for InstanceAccessDetails
[src]

Formats the value using the given formatter.

impl Clone for InstanceAccessDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more