Module Kinesis.Stream

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

type stream_mode_details = {
  1. stream_mode : string;
}

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

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

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

and stream_encryption = {
  1. encryption_type : string;
  2. key_id : string;
}

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

type properties = {
  1. stream_mode_details : stream_mode_details option;
  2. stream_encryption : stream_encryption option;
  3. retention_period_hours : int option;
  4. tags : tag list option;
  5. name : string option;
  6. 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 ]
type attributes = {
  1. ref_ : string;
  2. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string