Module Values_0.StreamInfoSource

Information about a stream.

Sourcetype nonrec t = {
  1. streamId : StreamId.t option;
    (*

    The stream ID.

    *)
  2. streamArn : StreamArn.t option;
    (*

    The stream ARN.

    *)
  3. streamVersion : StreamVersion.t option;
    (*

    The stream version.

    *)
  4. description : StreamDescription.t option;
    (*

    The description of the stream.

    *)
  5. files : StreamFiles.t option;
    (*

    The files to stream.

    *)
  6. createdAt : DateType.t option;
    (*

    The date when the stream was created.

    *)
  7. lastUpdatedAt : DateType.t option;
    (*

    The date when the stream was last updated.

    *)
  8. roleArn : RoleArn.t option;
    (*

    An IAM role IoT assumes to access your S3 files.

    *)
}
Sourceval make : ?streamId:??? -> ?streamArn:??? -> ?streamVersion:??? -> ?description:??? -> ?files:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of StreamVersion.t | `List of [> `Structure of (string * [> `Integer of FileId.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ] list | `String of StreamId.t | `Timestamp of DateType.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