Module IVSChat.Room

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivschat-room.html

type message_review_handler = {
  1. fallback_result : string option;
  2. uri : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivschat-room-messagereviewhandler.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. maximum_message_rate_per_second : int option;
  2. maximum_message_length : int option;
  3. message_review_handler : message_review_handler option;
  4. logging_configuration_identifiers : string list option;
  5. tags : tag list option;
  6. name : string option;
}

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

val make_properties : ?maximum_message_rate_per_second:int -> ?maximum_message_length:int -> ?message_review_handler:message_review_handler -> ?logging_configuration_identifiers:string list -> ?tags:tag list -> ?name:string -> unit -> properties
val make_message_review_handler : ?fallback_result:string -> ?uri:string -> unit -> message_review_handler
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_message_review_handler : message_review_handler -> [> `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. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string