Module Values.CreateDatasetRequestSource

The request for a CreateDataset operation

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

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

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

    Display title for a FinSpace Dataset.

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

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

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

    Description of a Dataset.

    *)
  5. ownerInfo : DatasetOwnerInfo.t option;
    (*

    Contact information for a Dataset owner.

    *)
  6. permissionGroupParams : PermissionGroupParams.t;
    (*

    Permission group parameters for Dataset permissions.

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

    The unique resource identifier for a Dataset.

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

    Definition for a schema on a tabular Dataset.

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