getDataLakeDataset

Enables you to programmatically view an Amazon Web Services Supply Chain data lake dataset. Developers can view the data lake dataset information such as namespace, schema, and so on for a given instance ID, namespace, and dataset name.

Samples

// Get properties of an existing AWS Supply Chain inbound order dataset
val resp = supplyChainClient.getDataLakeDataset {
    instanceId = "1877dd20-dee9-4639-8e99-cb67acf21fe5"
    namespace = "asc"
    name = "inbound_order"
}
// Get proporties of an existing custom dataset
val resp = supplyChainClient.getDataLakeDataset {
    instanceId = "1877dd20-dee9-4639-8e99-cb67acf21fe5"
    namespace = "default"
    name = "my_dataset"
}