Class: Aws::GameLift::Types::GetInstanceAccessInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::GetInstanceAccessInput
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fleet_id ⇒ String
A unique identifier for the fleet that contains the instance you want access to.
-
#instance_id ⇒ String
A unique identifier for the instance you want to get access to.
Instance Attribute Details
#fleet_id ⇒ String
A unique identifier for the fleet that contains the instance you
want access to. You can use either the fleet ID or ARN value. 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.
5343 5344 5345 5346 5347 5348 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5343 class GetInstanceAccessInput < Struct.new( :fleet_id, :instance_id) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
A unique identifier for the instance you want to get access to. You can access an instance in any status.
5343 5344 5345 5346 5347 5348 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5343 class GetInstanceAccessInput < Struct.new( :fleet_id, :instance_id) SENSITIVE = [] include Aws::Structure end |