Struct rusoto_gamelift::InstanceAccess[][src]

pub struct InstanceAccess {
    pub credentials: Option<InstanceCredentials>,
    pub fleet_id: Option<String>,
    pub instance_id: Option<String>,
    pub ip_address: Option<String>,
    pub operating_system: Option<String>,
}

Information required to remotely connect to a fleet instance. Access is requested by calling GetInstanceAccess.

Fields

Credentials required to access the instance.

Unique identifier for a fleet containing the instance being accessed.

Unique identifier for an instance being accessed.

IP address assigned to the instance.

Operating system that is running on the instance.

Trait Implementations

impl Default for InstanceAccess
[src]

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

impl Debug for InstanceAccess
[src]

Formats the value using the given formatter. Read more

impl Clone for InstanceAccess
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InstanceAccess
[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