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

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

Overview

Set of credentials required to remotely access a fleet instance.

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 is a private key (which must be saved as a .pem file) for use with SSH.

Returns:

  • (String)


5529
5530
5531
5532
5533
5534
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5529

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

#user_nameString

User login string.

Returns:

  • (String)


5529
5530
5531
5532
5533
5534
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 5529

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