Module Values.UpdateDatasetRequestSource

Updates a dataset.

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

    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.

    *)
}
Sourceval context_ : string
Sourceval make : ?datasetDescription:??? -> ?clientToken:??? -> datasetId:ID.t -> datasetName:RestrictedName.t -> datasetSource:DatasetSource.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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