Evidently.Featuresee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-feature.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-entityoverride.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
and variation_object = {variation_name : string;double_value : float option;boolean_value : bool option;long_value : float option;string_value : string option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-feature-variationobject.html
type properties = {project : string;description : string option;evaluation_strategy : string option;default_variation : string option;entity_overrides : entity_override list option;variations : variation_object list;name : string;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-feature.html;
val make_properties :
project:string ->
?description:string ->
?evaluation_strategy:string ->
?default_variation:string ->
?entity_overrides:entity_override list ->
variations:variation_object list ->
?tags:tag list ->
name:string ->
unit ->
propertiesval make_entity_override :
?entity_id:string ->
?variation:string ->
unit ->
entity_overrideval make_tag : value:string -> key:string -> unit -> tagval make_variation_object :
variation_name:string ->
?double_value:float ->
?boolean_value:bool ->
?long_value:float ->
?string_value:string ->
unit ->
variation_objectval yojson_of_entity_override :
entity_override ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_variation_object :
variation_object ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes