Struct rusoto_gamelift::GetInstanceAccessInput[][src]

pub struct GetInstanceAccessInput {
    pub fleet_id: String,
    pub instance_id: String,
}

Represents the input for a request action.

Fields

Unique identifier for a fleet that contains the instance you want access to. The fleet can be in any of the following statuses: ACTIVATING, ACTIVE, or ERROR. Fleets with an ERROR status may be accessible for a short time before they are deleted.

Unique identifier for an instance you want to get access to. You can access an instance in any status.

Trait Implementations

impl Default for GetInstanceAccessInput
[src]

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

impl Debug for GetInstanceAccessInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetInstanceAccessInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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