Module Evidently.Experiment

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-experiment.html

type metric_goal_object = {
  1. entity_id_key : string;
  2. desired_change : string;
  3. metric_name : string;
  4. event_pattern : string option;
  5. value_key : string;
  6. unit_label : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-experiment-metricgoalobject.html

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

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

and treatment_to_weight = {
  1. treatment : string;
  2. split_weight : int;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-experiment-treatmenttoweight.html

and treatment_object = {
  1. description : string option;
  2. variation : string;
  3. feature : string;
  4. treatment_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-experiment-treatmentobject.html

and running_status_object = {
  1. status : string;
  2. desired_state : string option;
  3. analysis_complete_time : string option;
  4. reason : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-experiment-runningstatusobject.html

and online_ab_config_object = {
  1. treatment_weights : treatment_to_weight list option;
  2. control_treatment_name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-experiment-onlineabconfigobject.html

type properties = {
  1. project : string;
  2. running_status : running_status_object option;
  3. description : string option;
  4. metric_goals : metric_goal_object list;
  5. online_ab_config : online_ab_config_object;
  6. remove_segment : bool option;
  7. randomization_salt : string option;
  8. treatments : treatment_object list;
  9. sampling_rate : int option;
  10. segment : string option;
  11. tags : tag list option;
  12. name : string;
}

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

val make_properties : project:string -> ?running_status:running_status_object -> ?description:string -> metric_goals:metric_goal_object list -> online_ab_config:online_ab_config_object -> ?remove_segment:bool -> ?randomization_salt:string -> treatments:treatment_object list -> ?sampling_rate:int -> ?segment:string -> ?tags:tag list -> name:string -> unit -> properties
val make_metric_goal_object : entity_id_key:string -> desired_change:string -> metric_name:string -> ?event_pattern:string -> value_key:string -> ?unit_label:string -> unit -> metric_goal_object
val make_tag : value:string -> key:string -> unit -> tag
val make_treatment_to_weight : treatment:string -> split_weight:int -> unit -> treatment_to_weight
val make_treatment_object : ?description:string -> variation:string -> feature:string -> treatment_name:string -> unit -> treatment_object
val make_running_status_object : status:string -> ?desired_state:string -> ?analysis_complete_time:string -> ?reason:string -> unit -> running_status_object
val make_online_ab_config_object : ?treatment_weights:treatment_to_weight list -> ?control_treatment_name:string -> unit -> online_ab_config_object
val yojson_of_metric_goal_object : metric_goal_object -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_treatment_to_weight : treatment_to_weight -> Yojson.Safe.t
val yojson_of_treatment_object : treatment_object -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_running_status_object : running_status_object -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_online_ab_config_object : online_ab_config_object -> [> `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;
}
val create_attributes : string -> attributes
val cloudformation_type : string