Module GameLift.MatchmakingConfiguration

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

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

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

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

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

type properties = {
  1. game_properties : game_property list option;
  2. game_session_data : string option;
  3. description : string option;
  4. acceptance_timeout_seconds : int option;
  5. notification_target : string option;
  6. custom_event_data : string option;
  7. name : string;
  8. additional_player_count : int option;
  9. backfill_mode : string option;
  10. request_timeout_seconds : int;
  11. acceptance_required : bool;
  12. creation_time : string option;
  13. flex_match_mode : string option;
  14. rule_set_name : string;
  15. game_session_queue_arns : string list option;
  16. tags : tag list option;
  17. rule_set_arn : string option;
}

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

val make_properties : ?game_properties:game_property list -> ?game_session_data:string -> ?description:string -> ?acceptance_timeout_seconds:int -> ?notification_target:string -> ?custom_event_data:string -> name:string -> ?additional_player_count:int -> ?backfill_mode:string -> request_timeout_seconds:int -> acceptance_required:bool -> ?creation_time:string -> ?flex_match_mode:string -> rule_set_name:string -> ?game_session_queue_arns:string list -> ?tags:tag list -> ?rule_set_arn:string -> unit -> properties
val make_game_property : value:string -> key:string -> unit -> game_property
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_game_property : game_property -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. arn : string;
  3. name : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string