Kinesis.Stream
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesis-stream-streammodedetails.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-kinesis-stream-streamencryption.html
type properties = {
stream_mode_details : stream_mode_details option;
stream_encryption : stream_encryption option;
retention_period_hours : int option;
name : string option;
shard_count : int option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesis-stream.html;
val make_properties :
?stream_mode_details:stream_mode_details ->
?stream_encryption:stream_encryption ->
?retention_period_hours:int ->
?tags:tag list ->
?name:string ->
?shard_count:int ->
unit ->
properties
val make_stream_mode_details :
stream_mode:string ->
unit ->
stream_mode_details
val make_tag : value:string -> key:string -> unit -> tag
val make_stream_encryption :
encryption_type:string ->
key_id:string ->
unit ->
stream_encryption
val yojson_of_stream_mode_details :
stream_mode_details ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_stream_encryption :
stream_encryption ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes