Evidently.Project
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-appconfigresourceobject.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-s3destination.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html
type properties = {
data_delivery : data_delivery_object option;
description : string option;
app_config_resource : app_config_resource_object option;
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 ]
val create_attributes : string -> attributes