Module Values_0.KinesisActionSource

Describes an action to write data to an Amazon Kinesis stream.

Sourcetype nonrec t = {
  1. roleArn : AwsArn.t;
    (*

    The ARN of the IAM role that grants access to the Amazon Kinesis stream.

    *)
  2. streamName : StreamName.t;
    (*

    The name of the Amazon Kinesis stream.

    *)
  3. partitionKey : PartitionKey.t option;
    (*

    The partition key.

    *)
}
Sourceval context_ : string
Sourceval make : ?partitionKey:??? -> roleArn:AwsArn.t -> streamName:StreamName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AwsArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t