Module Values.KinesisDataStreamDestinationSource

Describes a Kinesis data stream destination.

Sourcetype nonrec t = {
  1. streamArn : StreamArn.t option;
    (*

    The ARN for a specific Kinesis data stream.

    *)
  2. destinationStatus : DestinationStatus.t option;
    (*

    The current status of replication.

    *)
  3. destinationStatusDescription : String_.t option;
    (*

    The human-readable string that corresponds to the replica status.

    *)
  4. approximateCreationDateTimePrecision : ApproximateCreationDateTimePrecision.t option;
    (*

    The precision of the Kinesis data stream timestamp. The values are either MILLISECOND or MICROSECOND.

    *)
}
Sourceval make : ?streamArn:??? -> ?destinationStatus:??? -> ?destinationStatusDescription:??? -> ?approximateCreationDateTimePrecision:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StreamArn.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