Module Evidently.Project

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

type app_config_resource_object = {
  1. environment_id : string;
  2. application_id : string;
}

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

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

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

and s3_destination = {
  1. bucket_name : string;
  2. prefix : string option;
}

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

and data_delivery_object = {
  1. s3 : s3_destination option;
  2. log_group : string option;
}

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

type properties = {
  1. data_delivery : data_delivery_object option;
  2. description : string option;
  3. app_config_resource : app_config_resource_object option;
  4. tags : tag list option;
  5. name : string;
}

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

val make_properties : ?data_delivery:data_delivery_object -> ?description:string -> ?app_config_resource:app_config_resource_object -> ?tags:tag list -> name:string -> unit -> properties
val make_app_config_resource_object : environment_id:string -> application_id:string -> unit -> app_config_resource_object
val make_tag : value:string -> key:string -> unit -> tag
val make_s3_destination : bucket_name:string -> ?prefix:string -> unit -> s3_destination
val make_data_delivery_object : ?s3:s3_destination -> ?log_group:string -> unit -> data_delivery_object
val yojson_of_app_config_resource_object : app_config_resource_object -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_destination : s3_destination -> Yojson.Safe.t
val yojson_of_data_delivery_object : data_delivery_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