Module Values.CreateDatasetRequestSource

Creates a dataset to connect an external datasource.

Sourcetype nonrec t = {
  1. datasetId : ID.t option;
    (*

    The ID of the dataset.

    *)
  2. datasetName : RestrictedName.t;
    (*

    The name of the dataset.

    *)
  3. datasetDescription : RestrictedDescription.t option;
    (*

    A description about the dataset, and its functionality.

    *)
  4. datasetSource : DatasetSource.t;
    (*

    The data source for the dataset.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
  6. tags : TagMap.t option;
    (*

    A list of key-value pairs that contain metadata for the access policy. For more information, see Tagging your IoT SiteWise resources in the IoT SiteWise User Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?datasetId:??? -> ?datasetDescription:??? -> ?clientToken:??? -> ?tags:??? -> datasetName:RestrictedName.t -> datasetSource:DatasetSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ID.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of ARN.t ]) list ]) 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