Class: Aws::GameLift::Types::InstanceCredentials

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

Overview

A set of credentials that allow remote access to an instance in an EC2 managed fleet. These credentials are returned in response to a call to GetInstanceAccess, which requests access for instances that are running game servers with the Amazon GameLift server SDK version 4.x or earlier.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#secretString

Secret string. For Windows instances, the secret is a password for use with Windows Remote Desktop. For Linux instances, it’s a private key for use with SSH.

Returns:

  • (String)


5654
5655
5656
5657
5658
5659
# File 'lib/aws-sdk-gamelift/types.rb', line 5654

class InstanceCredentials < Struct.new(
  :user_name,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end

#user_nameString

A user name for logging in.

Returns:

  • (String)


5654
5655
5656
5657
5658
5659
# File 'lib/aws-sdk-gamelift/types.rb', line 5654

class InstanceCredentials < Struct.new(
  :user_name,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end