Class: Aws::GameLift::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::S3Location
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
The location in Amazon S3 where build or script files are stored for access by Amazon GameLift Servers.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
An Amazon S3 bucket identifier.
-
#key ⇒ String
The name of the zip file that contains the build files or script files.
-
#object_version ⇒ String
The version of the file, if object versioning is turned on for the bucket.
-
#role_arn ⇒ String
The Amazon Resource Name ([ARN]) for an IAM role that allows Amazon GameLift Servers to access the S3 bucket.
Instance Attribute Details
#bucket ⇒ String
An Amazon S3 bucket identifier. Thename of the S3 bucket.
<note markdown=“1”> Amazon GameLift Servers doesn’t support uploading from Amazon S3 buckets with names that contain a dot (.).
</note>
10014 10015 10016 10017 10018 10019 10020 10021 |
# File 'lib/aws-sdk-gamelift/types.rb', line 10014 class S3Location < Struct.new( :bucket, :key, :role_arn, :object_version) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name of the zip file that contains the build files or script files.
10014 10015 10016 10017 10018 10019 10020 10021 |
# File 'lib/aws-sdk-gamelift/types.rb', line 10014 class S3Location < Struct.new( :bucket, :key, :role_arn, :object_version) SENSITIVE = [] include Aws::Structure end |
#object_version ⇒ String
The version of the file, if object versioning is turned on for the bucket. Amazon GameLift Servers 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.
10014 10015 10016 10017 10018 10019 10020 10021 |
# File 'lib/aws-sdk-gamelift/types.rb', line 10014 class S3Location < Struct.new( :bucket, :key, :role_arn, :object_version) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name ([ARN]) for an IAM role that allows Amazon GameLift Servers to access the S3 bucket.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html
10014 10015 10016 10017 10018 10019 10020 10021 |
# File 'lib/aws-sdk-gamelift/types.rb', line 10014 class S3Location < Struct.new( :bucket, :key, :role_arn, :object_version) SENSITIVE = [] include Aws::Structure end |