QLDB.Stream
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.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-qldb-stream-kinesisconfiguration.html
type properties = {
inclusive_start_time : string;
stream_name : string;
kinesis_configuration : kinesis_configuration;
exclusive_end_time : string option;
ledger_name : string;
role_arn : string;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html;
val make_properties :
inclusive_start_time:string ->
stream_name:string ->
kinesis_configuration:kinesis_configuration ->
?exclusive_end_time:string ->
ledger_name:string ->
role_arn:string ->
?tags:tag list ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_kinesis_configuration :
?aggregation_enabled:bool ->
?stream_arn:string ->
unit ->
kinesis_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_kinesis_configuration :
kinesis_configuration ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes