Class: Aws::GameLift::Types::InstanceCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::InstanceCredentials
- 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
-
#secret ⇒ String
Secret string.
-
#user_name ⇒ String
A user name for logging in.
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’s a private key for use with SSH.
7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-gamelift/types.rb', line 7409 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
A user name for logging in.
7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-gamelift/types.rb', line 7409 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end |