Module IoTAnalytics.Datastore

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotanalytics-datastore.html

type customer_managed_s3 = {
  1. bucket : string;
  2. role_arn : string;
  3. key_prefix : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3.html

and partition = {
  1. attribute_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-partition.html

and retention_period = {
  1. number_of_days : int option;
  2. unlimited : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-retentionperiod.html

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

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

and column = {
  1. type_ : string;
  2. name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-column.html

and customer_managed_s3_storage = {
  1. bucket : string;
  2. key_prefix : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3storage.html

and timestamp_partition = {
  1. attribute_name : string;
  2. timestamp_format : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-timestamppartition.html

and iot_site_wise_multi_layer_storage = {
  1. customer_managed_s3_storage : customer_managed_s3_storage option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-iotsitewisemultilayerstorage.html

and datastore_partition = {
  1. partition : partition option;
  2. timestamp_partition : timestamp_partition option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartition.html

and schema_definition = {
  1. columns : column list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-schemadefinition.html

and parquet_configuration = {
  1. schema_definition : schema_definition option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-parquetconfiguration.html

and datastore_partitions = {
  1. partitions : datastore_partition list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorepartitions.html

and datastore_storage = {
  1. customer_managed_s3 : customer_managed_s3 option;
  2. service_managed_s3 : Yojson.Safe.t option;
  3. iot_site_wise_multi_layer_storage : iot_site_wise_multi_layer_storage option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-datastorestorage.html

and file_format_configuration = {
  1. parquet_configuration : parquet_configuration option;
  2. json_configuration : Yojson.Safe.t option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-fileformatconfiguration.html

type properties = {
  1. datastore_storage : datastore_storage option;
  2. file_format_configuration : file_format_configuration option;
  3. datastore_partitions : datastore_partitions option;
  4. datastore_name : string option;
  5. retention_period : retention_period option;
  6. tags : tag list option;
}

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

val make_properties : ?datastore_storage:datastore_storage -> ?file_format_configuration:file_format_configuration -> ?datastore_partitions:datastore_partitions -> ?datastore_name:string -> ?retention_period:retention_period -> ?tags:tag list -> unit -> properties
val make_customer_managed_s3 : bucket:string -> role_arn:string -> ?key_prefix:string -> unit -> customer_managed_s3
val make_partition : attribute_name:string -> unit -> partition
val make_retention_period : ?number_of_days:int -> ?unlimited:bool -> unit -> retention_period
val make_tag : value:string -> key:string -> unit -> tag
val make_column : type_:string -> name:string -> unit -> column
val make_customer_managed_s3_storage : bucket:string -> ?key_prefix:string -> unit -> customer_managed_s3_storage
val make_timestamp_partition : attribute_name:string -> ?timestamp_format:string -> unit -> timestamp_partition
val make_iot_site_wise_multi_layer_storage : ?customer_managed_s3_storage:customer_managed_s3_storage -> unit -> iot_site_wise_multi_layer_storage
val make_datastore_partition : ?partition:partition -> ?timestamp_partition:timestamp_partition -> unit -> datastore_partition
val make_schema_definition : ?columns:column list -> unit -> schema_definition
val make_parquet_configuration : ?schema_definition:schema_definition -> unit -> parquet_configuration
val make_datastore_partitions : ?partitions:datastore_partition list -> unit -> datastore_partitions
val make_datastore_storage : ?customer_managed_s3:customer_managed_s3 -> ?service_managed_s3:Yojson.Safe.t -> ?iot_site_wise_multi_layer_storage:iot_site_wise_multi_layer_storage -> unit -> datastore_storage
val make_file_format_configuration : ?parquet_configuration:parquet_configuration -> ?json_configuration:Yojson.Safe.t -> unit -> file_format_configuration
val yojson_of_customer_managed_s3 : customer_managed_s3 -> Yojson.Safe.t
val yojson_of_partition : partition -> Yojson.Safe.t
val yojson_of_retention_period : retention_period -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_column : column -> Yojson.Safe.t
val yojson_of_customer_managed_s3_storage : customer_managed_s3_storage -> Yojson.Safe.t
val yojson_of_timestamp_partition : timestamp_partition -> Yojson.Safe.t
val yojson_of_iot_site_wise_multi_layer_storage : iot_site_wise_multi_layer_storage -> Yojson.Safe.t
val yojson_of_datastore_partition : datastore_partition -> Yojson.Safe.t
val yojson_of_schema_definition : schema_definition -> Yojson.Safe.t
val yojson_of_parquet_configuration : parquet_configuration -> Yojson.Safe.t
val yojson_of_datastore_partitions : datastore_partitions -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_datastore_storage : datastore_storage -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_file_format_configuration : file_format_configuration -> [> `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. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string