Class: Aws::GameLift::Types::InstanceCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::InstanceCredentials
- 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
-
#secret ⇒ String
Secret string.
-
#user_name ⇒ String
User login string.
Instance Attribute Details
#secret ⇒ String
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.
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_name ⇒ String
User login 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 |