Forecast.Dataset
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-forecast-dataset.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-attributesitems.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-encryptionconfig.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-tagsitems.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-forecast-dataset-schema.html
type properties = {
data_frequency : string option;
dataset_name : string;
schema : schema;
dataset_type : string;
domain : string;
encryption_config : encryption_config option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-forecast-dataset.html;
val make_properties :
?data_frequency:string ->
dataset_name:string ->
schema:schema ->
dataset_type:string ->
domain:string ->
?encryption_config:encryption_config ->
?tags:tags_items list ->
unit ->
properties
val make_attributes_items :
?attribute_type:string ->
?attribute_name:string ->
unit ->
attributes_items
val make_encryption_config :
?kms_key_arn:string ->
?role_arn:string ->
unit ->
encryption_config
val make_tags_items : value:string -> key:string -> unit -> tags_items
val make_schema : ?attributes_:attributes_items list -> unit -> schema
val yojson_of_attributes_items : attributes_items -> Yojson.Safe.t
val yojson_of_encryption_config :
encryption_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tags_items :
tags_items ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_schema : schema -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes