Module IoTAnalytics.Channel

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

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

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-channel-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 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-channel-customermanageds3.html

and channel_storage = {
  1. customer_managed_s3 : customer_managed_s3 option;
  2. service_managed_s3 : Yojson.Safe.t option;
}

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

type properties = {
  1. channel_name : string option;
  2. channel_storage : channel_storage option;
  3. retention_period : retention_period option;
  4. tags : tag list option;
}

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

val make_properties : ?channel_name:string -> ?channel_storage:channel_storage -> ?retention_period:retention_period -> ?tags:tag list -> unit -> properties
val make_retention_period : ?number_of_days:int -> ?unlimited:bool -> unit -> retention_period
val make_tag : value:string -> key:string -> unit -> tag
val make_customer_managed_s3 : bucket:string -> role_arn:string -> ?key_prefix:string -> unit -> customer_managed_s3
val make_channel_storage : ?customer_managed_s3:customer_managed_s3 -> ?service_managed_s3:Yojson.Safe.t -> unit -> channel_storage
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_customer_managed_s3 : customer_managed_s3 -> Yojson.Safe.t
val yojson_of_channel_storage : channel_storage -> [> `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