Class: Aws::GameLift::Types::GetInstanceAccessInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

Note:

When making an API call, you may pass GetInstanceAccessInput data as a hash:

{
  fleet_id: "FleetId", # required
  instance_id: "InstanceId", # required
}

Represents the input for a request action.

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idString

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.

Returns:

  • (String)


3793
3794
3795
3796
3797
# File 'lib/aws-sdk-gamelift/types.rb', line 3793

class GetInstanceAccessInput < Struct.new(
  :fleet_id,
  :instance_id)
  include Aws::Structure
end

#instance_idString

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

Returns:

  • (String)


3793
3794
3795
3796
3797
# File 'lib/aws-sdk-gamelift/types.rb', line 3793

class GetInstanceAccessInput < Struct.new(
  :fleet_id,
  :instance_id)
  include Aws::Structure
end