Module Values_1.CreateStreamRequestSource

Creates a stream for delivering one or more large files in chunks over MQTT. A stream transports data bytes in chunks or blocks packaged as MQTT messages from a source like S3. You can have one or more files associated with a stream. Requires permission to access the CreateStream action.

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

    The stream ID.

    *)
  2. description : Values_0.StreamDescription.t option;
    (*

    A description of the stream.

    *)
  3. files : Values_0.StreamFiles.t;
    (*

    The files to stream.

    *)
  4. roleArn : Values_0.RoleArn.t;
    (*

    An IAM role that allows the IoT service principal to access your S3 files.

    *)
  5. tags : Values_0.TagList.t option;
    (*

    Metadata which can be used to manage streams.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> streamId:Values_0.StreamId.t -> files:Values_0.StreamFiles.t -> roleArn:Values_0.RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of int | `String of string | `Structure of (string * [> `String of string ]) list ]) list ] list | `String of Values_0.StreamId.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