Module GameLift.Build

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html

type storage_location = {
  1. object_version : string option;
  2. bucket : string;
  3. key : string;
  4. role_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html

type properties = {
  1. operating_system : string option;
  2. version : string option;
  3. server_sdk_version : string option;
  4. storage_location : storage_location option;
  5. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html;

val make_properties : ?operating_system:string -> ?version:string -> ?server_sdk_version:string -> ?storage_location:storage_location -> ?name:string -> unit -> properties
val make_storage_location : ?object_version:string -> bucket:string -> key:string -> role_arn:string -> unit -> storage_location
val yojson_of_storage_location : storage_location -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. build_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string