AWS Fundamentals Logo
AWS Fundamentals
AWS::GameLift::Build

GameLift Build

Resource Type definition for AWS::GameLift::Build

Properties

6 configurable properties. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
OperatingSystem
string
Create-only
ServerSdkVersion
string
Create-only
StorageLocation
StorageLocation
Create-onlyWrite-only
Tags
Array<Tag>
Version
string

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
BuildArnstringThe Amazon Resource Name (ARN) that is assigned to a Amazon GameLift build resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift build ARN, the resource ID matches the BuildId value.
BuildIdstringA unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet...

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::GameLift::Build

Resources:
  MyResource:
    Type: AWS::GameLift::Build
    Properties:
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

gamelift:DescribeBuildgamelift:CreateBuildgamelift:ListTagsForResourcegamelift:TagResourceiam:PassRole

read

gamelift:DescribeBuildgamelift:ListTagsForResource

update

gamelift:UpdateBuildgamelift:DescribeBuildgamelift:TagResourcegamelift:UntagResourcegamelift:ListTagsForResource

delete

gamelift:DescribeBuildgamelift:DeleteBuild

list

gamelift:ListBuilds

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceGameLift
Properties8
Required0
TaggingSupported
Primary IDBuildId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

StorageLocationOperatingSystemServerSdkVersion

External Links