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 [docs.aws.amazon.com/gamelift/latest/apireference/API_GetInstanceAccess][1], which requests access for instances that are running game servers with the Amazon GameLift server SDK version 4.x or earlier.
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_GetInstanceAccess
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.
7536 7537 7538 7539 7540 7541 |
# File 'lib/aws-sdk-gamelift/types.rb', line 7536 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
A user name for logging in.
7536 7537 7538 7539 7540 7541 |
# File 'lib/aws-sdk-gamelift/types.rb', line 7536 class InstanceCredentials < Struct.new( :user_name, :secret) SENSITIVE = [] include Aws::Structure end |