Module GameLift.Script

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

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and s3_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-script-s3location.html

type properties = {
  1. version : string option;
  2. storage_location : s3_location;
  3. tags : tag list option;
  4. name : string option;
}

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

val make_properties : ?version:string -> storage_location:s3_location -> ?tags:tag list -> ?name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_s3_location : ?object_version:string -> bucket:string -> key:string -> role_arn:string -> unit -> s3_location
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_location : s3_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. creation_time : string;
  3. id : string;
  4. arn : string;
  5. size_on_disk : int;
}
val create_attributes : string -> attributes
val cloudformation_type : string