Module QLDB.Stream

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qldb-stream.html

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

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

and kinesis_configuration = {
  1. aggregation_enabled : bool option;
  2. stream_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qldb-stream-kinesisconfiguration.html

type properties = {
  1. inclusive_start_time : string;
  2. stream_name : string;
  3. kinesis_configuration : kinesis_configuration;
  4. exclusive_end_time : string option;
  5. ledger_name : string;
  6. role_arn : string;
  7. tags : tag list option;
}

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 ]
type attributes = {
  1. ref_ : string;
  2. id : string;
  3. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string