Class: Aws::GameLift::Types::CreateBuildOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CreateBuildOutput
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:upload_credentials]
Instance Attribute Summary collapse
-
#build ⇒ Types::Build
The newly created build resource, including a unique build IDs and status.
-
#storage_location ⇒ Types::S3Location
Amazon S3 location for your game build file, including bucket name and key.
-
#upload_credentials ⇒ Types::AwsCredentials
This element is returned only when the operation is called without a storage location.
Instance Attribute Details
#build ⇒ Types::Build
The newly created build resource, including a unique build IDs and status.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 1477 class CreateBuildOutput < Struct.new( :build, :upload_credentials, :storage_location) SENSITIVE = [:upload_credentials] include Aws::Structure end |
#storage_location ⇒ Types::S3Location
Amazon S3 location for your game build file, including bucket name and key.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 1477 class CreateBuildOutput < Struct.new( :build, :upload_credentials, :storage_location) SENSITIVE = [:upload_credentials] include Aws::Structure end |
#upload_credentials ⇒ Types::AwsCredentials
This element is returned only when the operation is called without a storage location. It contains credentials to use when you are uploading a build file to an Amazon S3 bucket that is owned by Amazon GameLift. Credentials have a limited life span. To refresh these credentials, call RequestUploadCredentials.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 1477 class CreateBuildOutput < Struct.new( :build, :upload_credentials, :storage_location) SENSITIVE = [:upload_credentials] include Aws::Structure end |