Class: Aws::GameLift::Types::AwsCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::AwsCredentials
- 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
-
#access_key_id ⇒ String
Temporary key allowing access to the Amazon GameLift S3 account.
-
#secret_access_key ⇒ String
Temporary secret key allowing access to the Amazon GameLift S3 account.
-
#session_token ⇒ String
Token used to associate a specific build ID with the files uploaded using these credentials.
Instance Attribute Details
#access_key_id ⇒ String
Temporary key allowing access to the Amazon GameLift S3 account.
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_key ⇒ String
Temporary secret key allowing access to the Amazon GameLift S3 account.
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_token ⇒ String
Token used to associate a specific build ID with the files uploaded using these credentials.
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 |