Struct rusoto_gamelift::InstanceCredentials[][src]

pub struct InstanceCredentials {
    pub secret: Option<String>,
    pub user_name: Option<String>,
}

Set of credentials required to remotely access a fleet instance. Access credentials are requested by calling GetInstanceAccess and returned in an InstanceAccess object.

Fields

Secret string. For Windows instances, the secret is a password for use with Windows Remote Desktop. For Linux instances, it is a private key (which must be saved as a .pem file) for use with SSH.

User login string.

Trait Implementations

impl Default for InstanceCredentials
[src]

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

impl Debug for InstanceCredentials
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceCredentials
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstanceCredentials
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations