Forecast.Datasetsee 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 ->
propertiesval make_attributes_items :
?attribute_type:string ->
?attribute_name:string ->
unit ->
attributes_itemsval make_encryption_config :
?kms_key_arn:string ->
?role_arn:string ->
unit ->
encryption_configval make_tags_items : value:string -> key:string -> unit -> tags_itemsval make_schema : ?attributes_:attributes_items list -> unit -> schemaval yojson_of_attributes_items : attributes_items -> Yojson.Safe.tval 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