Module Values.DataLakeDatasetSource

The data lake dataset details.

Sourcetype nonrec t = {
  1. instanceId : UUID.t option;
    (*

    The Amazon Web Services Supply Chain instance identifier.

    *)
  2. namespace : DataLakeNamespaceName.t option;
    (*

    The namespace of the dataset, besides the custom defined namespace, every instance comes with below pre-defined namespaces: asc - For information on the Amazon Web Services Supply Chain supported datasets see https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html. default - For datasets with custom user-defined schemas.

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

    The name of the dataset. For asc namespace, the name must be one of the supported data entities under https://docs.aws.amazon.com/aws-supply-chain/latest/userguide/data-model-asc.html.

    *)
  4. arn : AscResourceArn.t option;
    (*

    The arn of the dataset.

    *)
  5. schema : DataLakeDatasetSchema.t option;
    (*

    The schema of the dataset.

    *)
  6. description : DataLakeDatasetDescription.t option;
    (*

    The description of the dataset.

    *)
  7. partitionSpec : DataLakeDatasetPartitionSpec.t option;
  8. createdTime : Timestamp.t option;
    (*

    The creation time of the dataset.

    *)
  9. lastModifiedTime : Timestamp.t option;
    (*

    The last modified time of the dataset.

    *)
}
Sourceval make : ?instanceId:??? -> ?namespace:??? -> ?name:??? -> ?arn:??? -> ?schema:??? -> ?description:??? -> ?partitionSpec:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of DataLakeDatasetSchemaFieldName.t | `Structure of (string * [> `Enum of string ]) list ]) list ] list | `String of DataLakeDatasetSchemaName.t ]) list | `Timestamp of Timestamp.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