Class: Aws::GameLift::Types::AwsCredentials

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

Overview

Temporary access credentials used for uploading game build files to Amazon GameLift. They are valid for a limited time. If they expire before you upload your game build, get a new set by calling RequestUploadCredentials.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_key_idString

Temporary key allowing access to the Amazon GameLift S3 account.

Returns:

  • (String)


189
190
191
192
193
194
195
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 189

class AwsCredentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end

#secret_access_keyString

Temporary secret key allowing access to the Amazon GameLift S3 account.

Returns:

  • (String)


189
190
191
192
193
194
195
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 189

class AwsCredentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end

#session_tokenString

Token used to associate a specific build ID with the files uploaded using these credentials.

Returns:

  • (String)


189
190
191
192
193
194
195
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 189

class AwsCredentials < Struct.new(
  :access_key_id,
  :secret_access_key,
  :session_token)
  SENSITIVE = []
  include Aws::Structure
end