Class: Aws::GameLift::Types::S3Location

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

Overview

The location in Amazon S3 where build or script files are stored for access by Amazon GameLift.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

An Amazon S3 bucket identifier. Thename of the S3 bucket.

Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).

Returns:

  • (String)


9021
9022
9023
9024
9025
9026
9027
9028
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9021

class S3Location < Struct.new(
  :bucket,
  :key,
  :role_arn,
  :object_version)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

The name of the zip file that contains the build files or script files.

Returns:

  • (String)


9021
9022
9023
9024
9025
9026
9027
9028
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9021

class S3Location < Struct.new(
  :bucket,
  :key,
  :role_arn,
  :object_version)
  SENSITIVE = []
  include Aws::Structure
end

#object_versionString

The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from an S3 bucket that you own. Use this parameter to specify a specific version of the file. If not set, the latest version of the file is retrieved.

Returns:

  • (String)


9021
9022
9023
9024
9025
9026
9027
9028
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9021

class S3Location < Struct.new(
  :bucket,
  :key,
  :role_arn,
  :object_version)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.

Returns:

  • (String)


9021
9022
9023
9024
9025
9026
9027
9028
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 9021

class S3Location < Struct.new(
  :bucket,
  :key,
  :role_arn,
  :object_version)
  SENSITIVE = []
  include Aws::Structure
end