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

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idString

A unique identifier for the fleet that contains the instance you want to access. You can request access to instances in EC2 fleets with the following statuses: ‘ACTIVATING`, `ACTIVE`, or `ERROR`. Use either a fleet ID or an ARN value.

<note markdown=“1”> You can access fleets in ‘ERROR` status for a short period of time before Amazon GameLift deletes them.

</note>

Returns:

  • (String)


7205
7206
7207
7208
7209
7210
# File 'lib/aws-sdk-gamelift/types.rb', line 7205

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

#instance_idString

A unique identifier for the instance you want to access. You can access an instance in any status.

Returns:

  • (String)


7205
7206
7207
7208
7209
7210
# File 'lib/aws-sdk-gamelift/types.rb', line 7205

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