Module Values.UpdateDatasetRequestSource

The request for an UpdateDataset operation

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
  2. datasetId : DatasetId.t;
    (*

    The unique identifier for the Dataset to update.

    *)
  3. datasetTitle : DatasetTitle.t;
    (*

    A display title for the Dataset.

    *)
  4. kind : DatasetKind.t;
    (*

    The format in which the Dataset data is structured. TABULAR – Data is structured in a tabular format. NON_TABULAR – Data is structured in a non-tabular format.

    *)
  5. datasetDescription : DatasetDescription.t option;
    (*

    A description for the Dataset.

    *)
  6. alias : AliasString.t option;
    (*

    The unique resource identifier for a Dataset.

    *)
  7. schemaDefinition : SchemaUnion.t option;
    (*

    Definition for a schema on a tabular Dataset.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?datasetDescription:??? -> ?alias:??? -> ?schemaDefinition:??? -> datasetId:DatasetId.t -> datasetTitle:DatasetTitle.t -> kind:DatasetKind.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClientToken.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of ColumnName.t | `Structure of (string * [> `Enum of string | `String of ColumnName.t ]) list ] 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