Module Values_0.DataSourceSource

Describes the location of the channel data.

Sourcetype nonrec t = {
  1. s3DataSource : S3DataSource.t option;
    (*

    The S3 location of the data source that is associated with a channel.

    *)
  2. fileSystemDataSource : FileSystemDataSource.t option;
    (*

    The file system that is associated with a channel.

    *)
  3. datasetSource : DatasetSource.t option;
    (*

    The dataset resource that's associated with a channel.

    *)
}
Sourceval make : ?s3DataSource:??? -> ?fileSystemDataSource:??? -> ?datasetSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of AttributeName.t ] list | `String of S3Uri.t | `Structure of (string * [> `Boolean of AcceptEula.t | `String of HubContentArn.t ]) list ]) list ]) 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