Module Values.DescribeDatasetResponseSource

Returns the definition of a specific DataBrew dataset.

Sourcetype nonrec t = {
  1. createdBy : CreatedBy.t option;
    (*

    The identifier (user name) of the user who created the dataset.

    *)
  2. createDate : Date.t option;
    (*

    The date and time that the dataset was created.

    *)
  3. name : DatasetName.t option;
    (*

    The name of the dataset.

    *)
  4. format : InputFormat.t option;
    (*

    The file format of a dataset that is created from an Amazon S3 file or folder.

    *)
  5. formatOptions : FormatOptions.t option;
  6. input : Input.t option;
  7. lastModifiedDate : Date.t option;
    (*

    The date and time that the dataset was last modified.

    *)
  8. lastModifiedBy : LastModifiedBy.t option;
    (*

    The identifier (user name) of the user who last modified the dataset.

    *)
  9. source : Source.t option;
    (*

    The location of the data for this dataset, Amazon S3 or the Glue Data Catalog.

    *)
  10. pathOptions : PathOptions.t option;
    (*

    A set of options that defines how DataBrew interprets an Amazon S3 path of the dataset.

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

    Metadata tags associated with this dataset.

    *)
  12. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the dataset.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createdBy:??? -> ?createDate:??? -> ?name:??? -> ?format:??? -> ?formatOptions:??? -> ?input:??? -> ?lastModifiedDate:??? -> ?lastModifiedBy:??? -> ?source:??? -> ?pathOptions:??? -> ?tags:??? -> ?resourceArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CreatedBy.t | `Structure of (string * [> `Map of ([> `String of PathParameterName.t ] * [> `Structure of (string * [> `Boolean of CreateColumn.t | `Enum of string | `String of PathParameterName.t | `Structure of (string * [> `Map of ([> `String of ValueReference.t ] * [> `String of ConditionValue.t ]) list | `String of DatetimeFormat.t ]) list ]) list ]) list | `Structure of (string * [> `Boolean of MultiLine.t | `Enum of string | `Integer of MaxFiles.t | `List of [> `Integer of SheetIndex.t | `String of SheetName.t ] list | `Map of ([> `String of ValueReference.t ] * [> `String of ConditionValue.t ]) list | `String of Delimiter.t | `Structure of (string * [> `String of Bucket.t ]) list ]) list ]) list | `Timestamp of Date.t ]) 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