Module Values.KinesisStreamSourceDescriptionSource

Details about a Kinesis data stream used as the source for a Firehose stream.

Sourcetype nonrec t = {
  1. kinesisStreamARN : KinesisStreamARN.t option;
    (*

    The Amazon Resource Name (ARN) of the source Kinesis data stream. For more information, see Amazon Kinesis Data Streams ARN Format.

    *)
  2. roleARN : RoleARN.t option;
    (*

    The ARN of the role used by the source Kinesis data stream. For more information, see Amazon Web Services Identity and Access Management (IAM) ARN Format.

    *)
  3. deliveryStartTimestamp : DeliveryStartTimestamp.t option;
    (*

    Firehose starts retrieving records from the Kinesis data stream starting with this timestamp.

    *)
}
Sourceval make : ?kinesisStreamARN:??? -> ?roleARN:??? -> ?deliveryStartTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of KinesisStreamARN.t | `Timestamp of DeliveryStartTimestamp.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