Class: Aws::GameLift::Types::CreateBuildOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::CreateBuildOutput
- Includes:
- Structure
- Defined in:
- 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.
1418 1419 1420 1421 1422 1423 1424 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1418 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.
1418 1419 1420 1421 1422 1423 1424 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1418 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].
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_RequestUploadCredentials.html
1418 1419 1420 1421 1422 1423 1424 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1418 class CreateBuildOutput < Struct.new( :build, :upload_credentials, :storage_location) SENSITIVE = [:upload_credentials] include Aws::Structure end |